:root {
  /* Premium Palette - Deep Indigo & Vibrant Emerald */
  --bg-dark: #070B14;
  --bg-light: #FFFFFF;
  --accent: #3182CE;
  /* Vibrant Blue */
  --accent-glow: rgba(49, 130, 206, 0.3);
  --success: #10B981;

  --text-on-dark: #F8FAFC;
  --text-on-light: #0F172A;
  --text-muted-dark: #94A3B8;
  --text-muted-light: #64748B;

  --border-light: #F1F5F9;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Layout Constants */
  --container-max: 1200px;
  --nav-height: 80px;

  /* UI Refinements */
  --radius-2xl: 32px;
  --radius-xl: 24px;
  --radius-l: 16px;
  --radius-m: 12px;

  --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glass-bg: rgba(15, 23, 42, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* Global Container (Strict Rule) */
.container-global {
  max-width: 1152px;
  /* max-w-6xl */
  margin: 0 auto;
  padding: 0 24px;
  /* px-6 */
}

@media (min-width: 768px) {
  .container-global {
    padding: 0 40px;
    /* px-10 */
  }
}

/* Standardize tight section spacing */
.section-pad {
  padding: 40px 0;
}

/* Cursor Glow Overlay */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(600px circle at var(--x, 0px) var(--y, 0px), rgba(49, 130, 206, 0.08), transparent 80%);
}

.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::after {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: linear-gradient(45deg,
      transparent 45%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 55%);
  transform: rotate(-45deg);
  transition: none;
  pointer-events: none;
}

.shine-effect:hover::after {
  transition: all 0.8s ease-out;
  top: 150%;
  left: 150%;
}

/* Designed for Ops (Rebuild - 2 Col) */
.scroll-chapters {
  background: var(--bg-dark);
  position: relative;
  /* Divide from hero */
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.scroll-chapters h2 {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.chapter-container {
  /* Use global container rules explicitly or inherit */
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .chapter-container {
    flex-direction: row;
    padding: 0 40px;
    align-items: flex-start;
    /* CRITICAL for sticky */
  }
}

.chapter-pinned {
  /* Mobile: Stacked */
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .chapter-pinned {
    width: 35%;
    /* Reduced to give more room */
    height: 100vh;
    /* Full viewport height for centering */
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    z-index: 10;
    padding-right: 120px;
    /* Widened for clear separation */
  }

  .chapter-content {
    width: 65%;
    /* Increased to accommodate content */
  }
}

.chapter-progress-track {
  width: 2px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.chapter-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
  transition: height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chapter-content {
  width: 100%;
  /* No padding-top to avoid massive gap, layout handles flow */
}

@media (min-width: 768px) {
  .chapter-content {
    width: 60%;
    /* Fixed 60% */
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 120px;
    /* Spacing between cards */
  }
}

.chapter-card {
  /* Cards stack naturally */
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: auto;
  /* Content driven height */
  opacity: 0.2;
  /* Start faded */
  transform: translateY(30px) scale(0.98);
  transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chapter-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.chapter-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(49, 130, 206, 0.15);
}

.card-number-bg {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 32px;
  right: 32px;
  left: auto !important;
  /* Force to right side */
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.05em;
}

.chapter-card h3,
.chapter-card p {
  position: relative;
  z-index: 1;
}

/* Modals (Fixed & Centered) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  /* blur background */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* stop body scroll when open */
body.modal-open {
  overflow: hidden;
}

body .modal-content {
  background: #0B1220 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 95%;
  max-width: 900px;
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 20px rgba(49, 130, 206, 0.1);
  position: relative;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  color: #fff !important;
}

.modal-header {
  padding: 32px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.modal-header p {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

.lightbox-visual {
  background: #000;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-visual img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}

.modal-footer {
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.modal-footer p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #fff;
  color: #000;
  transform: rotate(90deg) scale(1.1);
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-stepper {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  position: relative;
}

.modal-stepper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-light);
  z-index: 0;
}

.step-dot {
  width: 24px;
  height: 24px;
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: 50%;
  z-index: 1;
  position: relative;
}

.step-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}


/* Process Timeline (Strict Grid) */
.timeline-section {
  position: relative;
  padding: 40px 0;
  background: var(--bg-dark);
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.2) 80%, transparent);
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    margin-left: -1px;
  }
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  opacity: 0.3;
  transition: all 0.6s ease-out;
  padding-left: 60px;
  /* Mobile spacing */
}

.timeline-step.active {
  opacity: 1;
}

@media (min-width: 768px) {
  .timeline-step {
    grid-template-columns: 1fr 100px 1fr;
    gap: 0;
    padding-left: 0;
    align-items: center;
  }

  /* Left Side: Text on Left (Col 1), Marker in Column 2 */
  .timeline-step.step-left .step-content {
    grid-column: 1;
    text-align: right;
    padding-right: 60px;
  }

  .timeline-step.step-left .step-marker-container {
    grid-column: 2;
  }

  /* Right Side: Text on Right (Col 3), Marker in Column 2 */
  .timeline-step.step-right .step-content {
    grid-column: 3;
    text-align: left;
    padding-left: 60px;
  }

  .timeline-step.step-right .step-marker-container {
    grid-column: 2;
  }

  .step-marker-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 2;
  }
}

.step-marker {
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 24px;
  top: 10px;
  transform: translateX(-50%);
  z-index: 3;
}

.timeline-step.active .step-marker {
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-glow);
  animation: pulseMarker 2s infinite;
}

@keyframes pulseMarker {
  0% {
    box-shadow: 0 0 0 0px var(--accent-glow);
  }

  100% {
    box-shadow: 0 0 0 15px transparent;
  }
}

@media (min-width: 768px) {
  .step-marker {
    position: static;
    transform: none;
  }
}

.step-content {
  position: relative;
  z-index: 2;
}

.step-day-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 99px;
  margin-bottom: 12px;
}


/* Pricing Grid - Equal Heights */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.pricing-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-style: preserve-3d;
}

.pricing-card.pro {
  transform: scale(1.05);
  /* Base scale for pro */
}

/* Contact Form - Narrow */
.contact-card {
  max-width: 420px;
  /* Narrower as requested */
  margin: 0 auto;
  width: 100%;
}

/* Section Backgrounds */
.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
}

.section-white {
  background-color: var(--bg-light);
  color: var(--text-on-light);
  border-top: 1px solid var(--border-light);
  /* Subtle divider */
  border-bottom: 1px solid var(--border-light);
}

/* Typography System */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted-dark);
  max-width: 65ch;
}

.section-white p {
  color: var(--text-muted-light);
}

.section-white h2,
.section-white h3 {
  color: var(--text-on-light);
}

@media (min-width: 768px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 1.875rem;
  }
}

a {
  text-decoration: none;
  transition: all 0.2s;
}

/* Sticky Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(11, 18, 32, 0.95);
  /* Darker, less transparent */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-container {
    padding: 0 40px;
  }
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  /* Mobile first hidden */
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }
}

.nav-links a {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-radius: 99px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
}

.btn-link {
  color: var(--accent);
  font-weight: 600;
  padding: 0;
}

.btn-link:hover {
  opacity: 0.8;
}

/* Speed Badge */
.badge-speed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34D399;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border-radius: 99px;
  margin-bottom: 24px;
}

/* Hero Section - Tight Packing */
.hero {
  padding-top: 120px;
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 100%;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: aurora 20s infinite alternate ease-in-out;
}

@keyframes aurora {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  100% {
    transform: translateX(-40%) translateY(5%) scale(1.1);
  }
}

.container-global {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted-dark);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Hero Badge */
.badge-speed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 99px;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

/* 3D Stack Refinement */
.hero-visual-container {
  perspective: 2000px;
  margin-top: 100px;
  /* Increased to clear CTA buttons */
  display: flex;
  justify-content: center;
  height: 240px;
  position: relative;
}

.hero-stack {
  position: relative;
  width: 440px;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  animation: floatStack 8s infinite ease-in-out;
}

.stack-card {
  position: absolute;
  width: 100%;
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stack-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.8);
}

.card-back {
  top: 0;
  transform: translateZ(-100px) translateY(-80px) scale(0.85);
  opacity: 0.3;
}

.card-middle {
  top: 40px;
  transform: translateZ(-50px) translateY(-40px) scale(0.92);
  opacity: 0.6;
}

.card-front {
  top: 80px;
  transform: translateZ(0) translateY(0) scale(1);
  opacity: 1;
}

@keyframes floatStack {

  0%,
  100% {
    transform: translateY(0) rotateX(2deg);
  }

  50% {
    transform: translateY(-15px) rotateX(-2deg);
  }
}

/* Card Content Styling */
.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

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

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

.bg-orange {
  background: #F59E0B;
}

.card-text {
  text-align: left;
  flex-grow: 1;
}

.card-title {
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.card-sub {
  font-size: 0.8rem;
  color: #94A3B8;
}

.card-time {
  font-size: 0.8rem;
  color: #64748B;
  font-weight: 500;
}

/* Float Animation for stack */
@keyframes floatStack {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-stack {
  animation: floatStack 6s ease-in-out infinite;
}


/* Designed for Ops - Glass Enhancement */
.scroll-chapters {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.chapter-pinned {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chapter-pinned h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
}

.chapter-pinned p {
  font-size: 1.15rem;
  color: var(--text-muted-dark);
}

/* Progress Indicator */
.chapter-progress-track {
  width: 2px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.chapter-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent);
  transition: height 0.3s ease-out;
}

.chapter-card {
  min-height: 40vh;
  /* Reduced height for cleaner flow */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* Subtle border */
  border-radius: var(--radius-l);
  margin-bottom: 40px;
  opacity: 0.2;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.chapter-card.active {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.04);
  /* Slight active pop */
  border-color: rgba(255, 255, 255, 0.15);
}

.chapter-card h3 {
  font-size: 1.75rem;
  /* Clean, refined header */
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card-step-label {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  font-weight: 500;
  opacity: 0.8;
}

/* Demos (White & Clean) */
.demos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .demos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Demos - UI Mocks Refinement */
.demo-tile {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-l);
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.demo-tile:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.demo-mock {
  margin-top: 32px;
  background: #F8FAFC;
  border: 4px solid #EDF2F7;
  border-radius: 12px;
  height: 160px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 8px;
}

/* Abstract UI Elements */
.mock-bar {
  height: 8px;
  background: #E2E8F0;
  border-radius: 4px;
}

.mock-bar.accent {
  background: var(--accent);
  opacity: 0.3;
}

.mock-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: #CBD5E0;
}

.mock-dot.success {
  background: var(--success);
}

/* Custom Mock Scenes */
.mock-scene-ticket .mock-bar:nth-child(1) {
  width: 40%;
}

.mock-scene-ticket .mock-bar:nth-child(2) {
  width: 80%;
}

.mock-scene-ticket .mock-bar:nth-child(3) {
  width: 60%;
  height: 40px;
}

.mock-scene-checklist .mock-list-item:nth-child(1) .mock-dot {
  background: var(--success);
}

.mock-scene-checklist .mock-list-item:nth-child(2) .mock-dot {
  background: var(--success);
}

.mock-scene-checklist .mock-bar {
  width: 70%;
}


/* Contact Section (White, 2-Col) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 40px;
  }
}

.contact-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-l);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
}

.form-input {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
}

/* Process CSS defined above at line 242 */

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 60px;
  align-items: stretch;
  /* Equal height */
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-l);
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Fill grid cell */
  position: relative;
}

.pricing-card ul {
  margin-top: auto;
  /* Push list down if needed, or keep top */
  flex: 1;
}

.pricing-card.pro {
  border: 2px solid transparent;
  background: linear-gradient(var(--bg-light), var(--bg-light)) padding-box,
    linear-gradient(to bottom right, var(--accent), #10B981) border-box;
  transform: scale(1.05);
  /* Increased slight pop */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.badge-pop {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
  padding: 24px 0;
}

.faq-q {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  color: var(--text-muted-dark);
  margin-top: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  margin-top: 16px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}

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