:root {
  --background: #030407;
  --surface: #0A0C14;
  --surface-highlight: #131620;
  --primary: #8B5CF6;
  --secondary: #EC4899;
  --accent: #06B6D4;
  --neon-green: #10B981;
  --text-main: #ffffff;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  --font-sans: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: #1F2937;
  border-radius: 3px;
  border: 1px solid #374151;
}

::-webkit-scrollbar-thumb:hover {
  background: #374151;
}

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

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

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

.font-heading {
  font-family: var(--font-heading);
}

.font-sans {
  font-family: var(--font-sans);
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.text-neonGreen {
  color: var(--neon-green);
}

.text-white {
  color: var(--text-main);
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: var(--text-muted);
}

.text-gray-500 {
  color: var(--text-dark);
}

.text-center {
  text-align: center;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-accent {
  background-color: var(--accent);
}

.bg-surface {
  background-color: var(--surface);
}

.bg-background {
  background-color: var(--background);
}

/* Layout */
.section {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 1.5rem;
  }
}
.card {
  position: relative;
  height: 100%;
  background: rgba(19, 22, 32, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.125rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card.no-padding {
  padding: 0;
}

.card:hover {
  background: rgba(19, 22, 32, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(3, 4, 7, 0.7);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  max-width: 300px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.desktop-nav ul {
  display: flex;
}
.desktop-nav ul li {
  margin: 0 20px;
}
.desktop-nav ul li a {
  position: relative;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--text-muted);
  transition: color 0.3s;
  font-family: var(--font-sans);
}
.desktop-nav ul li a:hover {
  color: white;
}
.desktop-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 9999px;
  background-color: var(--accent);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
  width: 0;
  opacity: 0;
  transition: all 0.3s;
}
.desktop-nav ul li a:hover::after,
.desktop-nav ul li a.active::after {
  width: 100%;
  opacity: 1;
}
.desktop-nav ul li.current-menu-item a {
  color: white;
}
.desktop-nav ul li.current-menu-item a::after {
  width: 100%;
  opacity: 1;
}

.desktop-cta {
  display: none;
}

.mobile-menu-btn {
  display: block;
  color: #d1d5db;
}

.mobile-menu-btn:hover {
  color: white;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 12, 20, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 50;
}
.mobile-menu ul li {
  margin-bottom: 15px;
  padding-left: 30px;
}
.mobile-menu ul li a {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--font-heading);
  color: #d1d5db;
}
.mobile-menu ul li.current-menu-item a {
  color: var(--primary);
}

.mobile-menu.open {
  display: flex;
  animation: fadeInDown 0.3s ease-out forwards;
}

.text-primary-muted {
  color: rgba(139, 92, 246, 0.5);
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.1);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
  .desktop-cta {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}
/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 0.125rem;
  font-family: var(--font-sans);
}

.btn-primary:hover {
  background-color: rgba(139, 92, 246, 0.9);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: white;
  font-weight: 500;
  transition: all 0.3s;
  border-radius: 0.125rem;
  font-family: var(--font-sans);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.header-cta-btn {
  padding: 0.5rem 1.5rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.5);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hidden {
  display: none !important;
}

/* Utilities */
.border-top-primary {
  border-top: 2px solid var(--primary);
}

.border-top-secondary {
  border-top: 2px solid var(--secondary);
}

.border-top-accent {
  border-top: 2px solid var(--accent);
}

.pt-10 {
  padding-top: 2.5rem;
}

.max-w-3xl {
  max-width: 56rem;
}

.max-w-4xl {
  max-width: 72rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-8 {
  margin-bottom: 1.5rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-16 {
  margin-bottom: 4rem;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 12rem 25px 1.5rem 25px;
  overflow: hidden;
}

.hero-grid-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
}

.hero-grid-line.left {
  left: 2.5rem;
  background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.2), transparent);
}

.hero-grid-line.right {
  right: 2.5rem;
  background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.2), transparent);
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  z-index: 10;
  position: relative;
}

.hero-image-col {
  order: 1;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.75) contrast(1.25);
  transition: all 0.7s;
}

.hero-image-wrapper:hover img {
  filter: brightness(1);
}

.scanning-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.1), transparent);
  opacity: 0;
  height: 20%;
  width: 100%;
  pointer-events: none;
  transition: opacity 0.3s;
}

.hero-image-wrapper:hover .scanning-overlay {
  opacity: 1;
  animation: scan 4s linear infinite;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 75%;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}

.hero-text-col {
  order: 2;
  text-align: left;
  position: relative;
}

.hero-text-line {
  display: none;
  position: absolute;
  left: -2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.hero-title-highlight {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
  animation: pulse-glow 3s infinite;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: block;
  font-family: var(--font-sans);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.625;
  border-left: 2px solid rgba(139, 92, 246, 0.2);
  padding-left: 1.5rem;
  font-family: var(--font-sans);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-btn {
  width: 100%;
}

.btn-icon-circle {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-icon-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: white;
  border-radius: 50%;
  transition: background 0.3s;
}

.btn-outline:hover .btn-icon-dot {
  background: var(--primary);
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
  .hero-btn {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
  .hero-text-line {
    display: block;
  }
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-subtitle {
    font-size: 1.25rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }
}
/* Value Strip */
.value-strip {
  margin-top: -2.5rem;
}

@media (min-width: 1024px) {
  .value-strip {
    margin-top: -5rem;
  }
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}

.value-card {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
  border-top-color: rgba(139, 92, 246, 0.5);
}

.value-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-heading);
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.value-icon {
  position: relative;
  z-index: 10;
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  border-radius: 0.125rem;
}

.value-title {
  position: relative;
  z-index: 10;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.value-desc {
  position: relative;
  z-index: 10;
  color: var(--text-muted);
  line-height: 1.625;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Positioning Block */
.positioning-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.5rem;
  background: rgba(10, 12, 20, 0.3);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
  max-width: 80rem;
  margin: 0 auto;
}

.positioning-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(139, 92, 246, 0.5), transparent, transparent);
}

.positioning-image-col {
  flex: 1;
  width: 100%;
  position: relative;
}

.positioning-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
}

.positioning-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 10;
  opacity: 0.3;
}

.positioning-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
  transition: all 0.7s;
}

.positioning-image-wrapper:hover img {
  mix-blend-mode: normal;
}

.positioning-icon-wrapper {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.positioning-icon {
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--primary);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  color: var(--primary);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.positioning-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 0.125rem;
  font-family: var(--font-heading);
}

.positioning-text-col {
  flex: 1;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2em;
  font-family: var(--font-heading);
  text-align: center;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.625;
  font-family: var(--font-sans);
  margin-bottom: 1.5rem;
}

.section-desc.highlighted {
  border-left: 2px solid rgba(6, 182, 212, 0.3);
  padding-left: 1rem;
}

.section-desc-left-align {
  text-align: left;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.section-desc-2 {
  color: var(--text-muted);
  font-family: var(--font-sans);
  text-align: left;
  max-width: 700px;
}

@media (min-width: 768px) {
  .positioning-block {
    flex-direction: row;
  }
  .section-title {
    font-size: 3rem;
  }
  .section-title.title-left-align {
    text-align: left;
    margin-bottom: 0;
  }
  .section-title.title-left-align span {
    color: rgb(107, 114, 128);
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
/* Why ReMarket Us */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.3em;
}

.section-desc-center {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto;
  font-family: var(--font-sans);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  height: 100%;
}

.feature-icon {
  position: relative;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 0.125rem;
}

.feature-title {
  position: relative;
  z-index: 10;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  transition: color 0.3s;
  font-family: var(--font-heading);
  margin-bottom: 1.2rem;
}

.border-hover-primary:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

.border-hover-secondary:hover {
  border-color: rgba(236, 72, 153, 0.5);
}

.border-hover-accent:hover {
  border-color: rgba(6, 182, 212, 0.5);
}

.border-hover-neon:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

.feature-card:hover .group-hover-primary {
  color: var(--primary);
}

.feature-card:hover .group-hover-secondary {
  color: var(--secondary);
}

.feature-card:hover .group-hover-accent {
  color: var(--accent);
}

.feature-card:hover .group-hover-neon {
  color: var(--neon-green);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  font-family: var(--font-heading);
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.625;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Ecosystem */
.ecosystem-section {
  position: relative;
}

.ecosystem-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(139, 92, 246, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
  pointer-events: none;
}

.ecosystem-container {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ecosystem-top-node {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.ecosystem-hexagon {
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(6, 182, 212, 0.5);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.2);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0 1rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-radius: 9999px;
}

.hexagon-border-inner {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 9999px;
  margin: 0.5rem;
}

.hexagon-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(6, 182, 212, 0.2);
}

.hexagon-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 10;
  font-family: var(--font-heading);
}

.hexagon-desc {
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-muted);
  position: relative;
  z-index: 10;
  font-family: var(--font-sans);
  padding: 0 0.5rem;
}

.ecosystem-vertical-line {
  height: 4rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(255, 255, 255, 0.2));
  position: relative;
}

.ecosystem-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ecosystem-connector {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin-bottom: 2rem;
  display: none;
}

.connector-line {
  width: 67%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  height: 2.5rem;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
}

.connector-drop {
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
}

.connector-drop.left {
  left: 0;
}

.connector-drop.center {
  left: 50%;
  transform: translateX(-50%);
}

.connector-drop.right {
  right: 0;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

.ecosystem-card {
  background: rgba(10, 12, 20, 0.5);
  border: 1px solid;
  backdrop-filter: blur(12px);
  padding: 2rem;
  position: relative;
  transition: background 0.3s;
  height: 100%;
  border-radius: 0.125rem;
}

.ecosystem-card:hover {
  background: rgba(10, 12, 20, 0.8);
}

.ecosystem-card.border-primary {
  border-color: rgba(139, 92, 246, 0.3);
}

.ecosystem-card.border-secondary {
  border-color: rgba(236, 72, 153, 0.3);
}

.ecosystem-card.border-neon {
  border-color: rgba(16, 185, 129, 0.3);
}

.ecosystem-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 0.125rem;
}

.ecosystem-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.ecosystem-card-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.ecosystem-card-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 300;
  font-family: var(--font-sans);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .ecosystem-connector {
    display: block;
  }
  .ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Services Preview */
.services-preview-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
  align-items: stretch;
}
.services-preview-grid.grid-lg {
  max-width: 72rem;
}

.services-preview-card {
  flex: 1;
  padding: 2rem;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0.125rem;
  max-width: 560px;
}

.services-preview-card:hover {
  transform: scale(1.01);
}

.services-preview-card.baseline {
  background: rgba(10, 12, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.services-preview-bg {
  position: absolute;
  inset: 0;
  background: rgba(139, 92, 246, 0.05);
  opacity: 0;
  transition: opacity 0.3s;
}

.services-preview-card.baseline:hover .services-preview-bg {
  opacity: 1;
}

.services-preview-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.services-preview-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
}

.services-preview-card.baseline .services-preview-icon {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.services-preview-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.25;
  font-family: var(--font-heading);
}

.services-preview-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.services-preview-list {
  space-y: 1.25rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  position: relative;
  z-index: 10;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.services-preview-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  margin-top: 0.125rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.125rem;
  color: var(--primary);
}

.services-preview-list span {
  color: #d1d5db;
  font-weight: 500;
  font-size: 15px;
}

.services-preview-btn {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.125rem;
  font-family: var(--font-sans);
  display: block;
  transition: all 0.3s;
}

.btn-outline-primary {
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

.services-preview-card.advanced {
  background: var(--surface);
  border: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
}

.services-preview-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.services-preview-card.advanced .services-preview-icon {
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.services-preview-card.advanced .check-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.services-preview-card.highlight {
  background: var(--surface);
  border: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
  overflow: hidden;
}

.services-preview-card.highlight .services-preview-icon {
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.services-preview-card.highlight .check-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-solid-accent {
  background: var(--accent);
  color: black;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.btn-solid-accent:hover {
  background: white;
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.125rem;
  font-family: var(--font-sans);
  transition: all 0.3s;
}

.btn-outline-small:hover {
  border-color: rgba(139, 92, 246, 0.5);
  color: var(--primary);
}

.btn-outline-small:hover .arrow-icon {
  transform: translateX(4px);
}

.arrow-icon {
  transition: transform 0.3s;
}

@media (min-width: 1024px) {
  .services-preview-grid {
    flex-direction: row;
    justify-content: flex-start;
  }
  .services-preview-card {
    padding: 2.5rem;
  }
}
/* Trust */
.trust-container {
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.trust-line.top {
  top: 0;
}

.trust-line.bottom {
  bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.125rem;
  text-align: left;
  transition: border-color 0.3s;
}
.trust-item .trust-item-title {
  display: flex;
  align-items: flex-start;
}

.trust-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
}

.trust-icon {
  transition: color 0.3s;
  margin-right: 10px;
}

.trust-item:hover .trust-icon {
  color: white;
}

.trust-text {
  font-weight: 600;
  color: #d1d5db;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  border-bottom: 1px solid rgba(139, 92, 246, 0.5);
  padding-bottom: 0.25rem;
  font-family: var(--font-sans);
  transition: all 0.3s;
}

.trust-link:hover {
  color: white;
  border-color: white;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  border-radius: 0.125rem;
  transition: background 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

.stat-number {
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--primary), var(--accent));
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.stat-desc {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0 1rem;
  font-weight: 300;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-number {
    font-size: 3rem;
  }
  .stat-number.stat-number-sm {
    font-size: 1.6rem;
  }
}
/* CTA Strip */
.cta-strip {
  position: relative;
  overflow: hidden;
}

.cta-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(10, 12, 20, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 3rem;
  backdrop-filter: blur(16px);
  max-width: 80rem;
  margin: 0 auto;
}

.cta-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.cta-text-col {
  max-width: 42rem;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.cta-desc {
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.cta-btn-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  width: 100%;
}

.cta-btn {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  width: 100%;
}

.cta-btn.btn-outline {
  box-shadow: none;
}

.cta-btn.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn.btn-primary:hover {
  background: white;
  color: black;
}

@media (min-width: 640px) {
  .cta-btn-col {
    flex-direction: row;
    width: auto;
  }
  .cta-btn {
    width: auto;
  }
}
@media (min-width: 768px) {
  .cta-container {
    flex-direction: row;
  }
  .cta-title {
    font-size: 2.25rem;
  }
}
/* Footer */
.footer {
  position: relative;
  background: var(--background);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  font-family: var(--font-sans);
}

.footer-container {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-logo {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: -0.025em;
  font-family: var(--font-heading);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: var(--font-sans);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.footer-links-title {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding-bottom: 0.25rem;
  font-family: var(--font-heading);
  border-bottom: 1px solid;
}

.footer-links-title.border-primary {
  border-color: rgba(139, 92, 246, 0.3);
}

.footer-links-title.border-secondary {
  border-color: rgba(236, 72, 153, 0.3);
}

.footer-links-title.border-accent {
  border-color: rgba(6, 182, 212, 0.3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.3s;
  display: block;
}

.footer-links-col:nth-child(1) a:hover {
  color: var(--primary);
}

.footer-links-col:nth-child(2) a:hover {
  color: var(--secondary);
}

.footer-links-col:nth-child(3) a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.badge-dot.bg-green {
  background-color: #10B981;
}

.badge-dot.bg-blue {
  background-color: #3B82F6;
}

@media (min-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-badges {
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 6rem;
  }
  .footer-brand {
    grid-column: span 4/span 4;
  }
  .footer-links-grid {
    grid-column: span 8/span 8;
  }
}
/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* =========================================
   SERVICES PAGE STYLES
   ========================================= */
.page-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
  padding-top: 8rem;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.page-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  max-width: 42rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 80rem;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 12, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.125rem;
  overflow: hidden;
}

.service-card-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
}

.service-icon.primary {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: var(--primary);
}

.service-icon.secondary {
  background: rgba(236, 72, 153, 0.2);
  border: 1px solid rgba(236, 72, 153, 0.5);
  color: var(--secondary);
}

.service-icon.accent {
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.5);
  color: var(--accent);
}

.service-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
}

.service-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.service-subtitle.primary {
  color: var(--primary);
}

.service-subtitle.secondary {
  color: var(--secondary);
}

.service-subtitle.accent {
  color: var(--accent);
}

.service-body {
  padding: 2rem;
  flex-grow: 1;
}

.service-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 2rem;
  font-family: var(--font-sans);
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-feature-icon {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-feature-icon.primary {
  color: var(--primary);
}

.service-feature-icon.secondary {
  color: var(--secondary);
}

.service-feature-icon.accent {
  color: var(--accent);
}

.service-feature-text {
  color: #d1d5db;
  font-size: 1rem;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .service-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-section {
  position: relative;
  margin-top: 5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
}

.process-line {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  display: none;
}

.process-step {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-number {
  width: 4rem;
  height: 4rem;
  background: var(--background);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.process-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-line {
    display: block;
  }
}
/* =========================================
   PRICING PAGE STYLES
   ========================================= */
.pricing-hero {
  padding: 14rem 1.5rem 5rem 1.5rem;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}

.pricing-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  pointer-events: none;
}

.pricing-hero-title {
  font-size: 2.5rem;
  line-height: 1em;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 10;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .pricing-hero-title {
    font-size: 3.75rem;
  }
}
.text-gradient {
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--primary), var(--accent));
}

.pricing-hero-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  max-width: 48rem;
  margin: 0 auto 2rem;
  font-weight: 300;
  font-family: var(--font-sans);
  position: relative;
  z-index: 10;
}

.pricing-hero-badge {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(91, 63, 168, 0.4);
  color: #9ca3af;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.125rem;
}

/* Pathways */
.pricing-pathways {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto 3rem;
}
.pricing-pathways.pricing-pathways-3col {
  grid-template-columns: 1fr;
  max-width: 72rem;
}

@media (min-width: 768px) {
  .pricing-pathways {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-pathways.pricing-pathways-3col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pathway-card {
  padding: 1.5rem;
  background: rgba(10, 12, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pathway-card.border-primary {
  border-color: rgba(139, 92, 246, 0.3);
}

.pathway-card.border-secondary {
  border-color: rgba(236, 72, 153, 0.3);
}

.pathway-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.pathway-desc {
  color: #9ca3af;
  font-family: var(--font-sans);
  font-size: 0.875rem;
}

/* Pricing Models */
.pricing-models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .pricing-models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.pricing-model-card {
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(10, 12, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.125rem;
}

@media (min-width: 1024px) {
  .pricing-model-card {
    padding: 2.5rem;
  }
}
.pricing-model-card.highlight {
  border-color: rgba(236, 72, 153, 0.5);
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.1);
}

.pricing-model-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.25rem 1rem;
  background: var(--secondary);
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom-left-radius: 0.125rem;
  font-family: var(--font-heading);
}

.pricing-model-header {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.pricing-model-type {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.pricing-model-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.pricing-model-subtitle {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.625;
  font-weight: 300;
  font-family: var(--font-sans);
}

.pricing-model-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-grow: 1;
  position: relative;
  z-index: 10;
}

.pricing-model-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.pricing-model-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-model-list.sub-list {
  padding-left: 25px;
}
.pricing-model-list.mar-bottom {
  margin-bottom: 20px;
}
.pricing-model-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

.pricing-model-list.gray li {
  color: #d1d5db;
}

.pricing-model-list.light li {
  color: #e5e7eb;
}

.pricing-model-list .dot {
  margin-top: 0.375rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: #6b7280;
  flex-shrink: 0;
}

.pricing-model-list .check {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.pricing-model-outcomes {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.125rem;
}

.pricing-model-outcomes-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
}

.pricing-model-outcomes-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
}

.pricing-model-outcomes ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-model-outcomes li {
  font-size: 0.875rem;
  color: white;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-model-outcomes li span {
  opacity: 0.5;
}

.pricing-model-ideal-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}
.pricing-model-ideal-title.highlight-desc {
  color: #3B82F6;
  margin-bottom: 1.5rem;
  padding-left: 25px;
}

.pricing-model-ideal-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.625;
  font-style: italic;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 0.75rem;
  font-family: var(--font-sans);
}

.pricing-model-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 10;
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  font-size: 0.875rem;
  border-radius: 0.125rem;
  font-family: var(--font-heading);
}

.btn-pricing.primary {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-pricing.primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-pricing.secondary {
  background: var(--secondary);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
}

.btn-pricing.secondary:hover {
  background: rgba(236, 72, 153, 0.9);
  transform: translateY(-2px);
}

/* Baseline Services */
.baseline-services {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.baseline-grid {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .baseline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.baseline-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.baseline-item:hover .baseline-dot {
  transform: scale(1.5);
}

.baseline-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  transition: transform 0.3s;
}

.baseline-text {
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: #d1d5db;
}

.baseline-banner {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.05);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  border-radius: 0.125rem;
}

.baseline-banner-glow {
  position: absolute;
  width: 1rem;
  height: 1rem;
  background: rgba(139, 92, 246, 0.5);
  filter: blur(4px);
}

.baseline-banner-glow.top-right {
  top: 0;
  right: 0;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
}

.baseline-banner-glow.bottom-left {
  bottom: 0;
  left: 0;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
}

.baseline-banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .baseline-banner-title {
    font-size: 1.875rem;
  }
}
.baseline-banner-desc {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
  font-weight: 300;
  font-family: var(--font-sans);
}

/* Add-ons */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.addon-card {
  background: rgba(10, 12, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.125rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.addon-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

.addon-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.addon-icon-wrapper {
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #e5e7eb;
  border-radius: 0.125rem;
}

.addon-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
}

.addon-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  min-height: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.addon-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  font-family: var(--font-sans);
}

.addon-feature-plus {
  color: var(--primary);
  margin-top: 0.125rem;
}

.addon-pricing-section {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.addon-pricing-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
}

.addon-pricing-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-sans);
}

/* Calculation */
.calc-section {
  background: rgba(0, 0, 0, 0.5);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .calc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.calc-card {
  background: rgba(10, 12, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.125rem;
  padding: 1.5rem;
  transition: border-color 0.3s;
}

.calc-card.hover-primary:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

.calc-card.hover-secondary:hover {
  border-color: rgba(236, 72, 153, 0.5);
}

.calc-card.hover-accent:hover {
  border-color: rgba(14, 165, 233, 0.5);
}

.calc-icon-wrapper {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 0.125rem;
}

.calc-icon-wrapper.primary {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--primary);
}

.calc-icon-wrapper.secondary {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.3);
  color: var(--secondary);
}

.calc-icon-wrapper.accent {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--accent);
}

.calc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.calc-desc {
  font-size: 0.875rem;
  color: #d1d5db;
  font-family: var(--font-sans);
  line-height: 1.625;
}

.calc-desc p {
  margin-bottom: 1rem;
}

.calc-desc ul {
  list-style-type: disc;
  padding-left: 1rem;
  margin-bottom: 1rem;
  color: #9ca3af;
}

.calc-desc ul li {
  margin-bottom: 0.25rem;
}

.calc-desc.border-left {
  border-left: 1px solid rgba(236, 72, 153, 0.3);
  padding-left: 0.75rem;
}

.calc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0.5rem;
}

.calc-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #d1d5db;
  font-family: var(--font-sans);
}

.calc-list-num {
  color: var(--accent);
}

/* FAQ */
.faq-section {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  text-align: left;
}

.faq-title {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: var(--font-heading);
  transition: color 0.3s;
  color: #d1d5db;
}

.faq-btn:hover .faq-title {
  color: white;
}

.faq-btn.open .faq-title {
  color: var(--primary);
}

.faq-icon {
  color: #6b7280;
  transition: color 0.3s;
}

.faq-btn:hover .faq-icon {
  color: white;
}

.faq-btn.open .faq-icon {
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #9ca3af;
  font-family: var(--font-sans);
  line-height: 1.625;
}

.faq-content.open {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-content-inner {
  padding-left: 1rem;
  border-left: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 0.875rem;
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-section {
  padding: 8rem 1.5rem 5rem;
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
}

.contact-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.333%;
  height: 100%;
  background: rgba(139, 92, 246, 0.05);
  filter: blur(100px);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  font-family: var(--font-heading);
}

.contact-desc {
  font-size: 1.25rem;
  color: #9ca3af;
  margin-bottom: 2rem;
  font-weight: 300;
  font-family: var(--font-sans);
  line-height: 1.625;
}

.contact-protocol {
  background: rgba(10, 12, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.125rem;
}

.protocol-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
}

.protocol-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.protocol-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.protocol-num {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  border-radius: 0.125rem;
  flex-shrink: 0;
}

.protocol-text h4 {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  margin-bottom: 0.25rem;
}

.protocol-text p {
  color: #9ca3af;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

/* Form Styles */
.contact-form-container {
  background: rgba(10, 12, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.125rem;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .contact-form-container {
    padding: 2.5rem;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  color: white;
  font-family: var(--font-sans);
  border-radius: 0.125rem;
  transition: all 0.3s;
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #374151;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #374151;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.5);
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  border-radius: 0.125rem;
  font-family: var(--font-heading);
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: white;
  color: black;
}

/* =========================
   BACKGROUND
========================= */
.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-color: #05070d;
}

/* GRID */
.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* =========================
   CIRCLES
========================= */
.circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatPulse 12s ease-in-out infinite;
}

/* PURPLE */
.circle.one {
  width: 520px;
  height: 520px;
  top: 5%;
  left: 10%;
  background: radial-gradient(circle, #6a4cff, transparent 70%);
  animation-delay: 0s;
}

/* TEAL */
.circle.two {
  width: 520px;
  height: 520px;
  bottom: 5%;
  right: 10%;
  background: radial-gradient(circle, #00c2a8, transparent 70%);
  animation-delay: 3s;
}

/* =========================
   ANIMATION (premium)
========================= */
@keyframes floatPulse {
  0% {
    transform: scale(1) translate(0px, 0px);
    opacity: 0.3;
  }
  25% {
    transform: scale(1.04) translate(8px, -10px);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.08) translate(0px, -15px);
    opacity: 0.5;
  }
  75% {
    transform: scale(1.04) translate(-8px, -10px);
    opacity: 0.4;
  }
  100% {
    transform: scale(1) translate(0px, 0px);
    opacity: 0.3;
  }
}
/* =========================
   DEMO CONTENT
========================= */
.content {
  position: relative;
  z-index: 1;
  padding: 100px;
  font-size: 32px;
}