/* Smart Expedite Design System - Dark theme with Emerald accent */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Core emerald accent */
  --emerald: hsl(160, 84%, 39%);
  --emerald-dark: hsl(160, 85%, 30%);
  --emerald-light: hsl(160, 84%, 52%);
  --emerald-subtle: hsla(160, 84%, 39%, 0.08);
  
  /* Dark surfaces */
  --background: hsl(0, 0%, 4%);
  --foreground: hsl(220, 13%, 91%);
  --card: hsl(0, 0%, 7%);
  --card-foreground: hsl(220, 13%, 91%);
  
  /* Primary uses emerald */
  --primary: hsl(160, 84%, 39%);
  --primary-foreground: hsl(0, 0%, 100%);
  
  /* Text variants */
  --text: hsl(220, 13%, 91%);
  --text-muted: hsla(220, 13%, 91%, 0.75);
  --text-muted-2: hsla(220, 13%, 91%, 0.55);
  --muted-foreground: hsla(220, 13%, 91%, 0.6);
  
  /* Lines/borders */
  --border: hsla(0, 0%, 100%, 0.10);
  --border-light: hsla(0, 0%, 100%, 0.06);
  
  /* Radius */
  --radius: 0.625rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-display {
  font-family: 'Space Grotesk', sans-serif;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(0, 0%, 4%, 0.85);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-brand img {
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: -2px;
}

.header-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.header-brand-name span:first-child {
  color: white;
}

.header-brand-name span:last-child {
  color: var(--emerald-light);
  margin-left: 4px;
}

.header-brand-tagline {
  font-size: 9px;
  color: hsla(0, 0%, 100%, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 14px;
  font-weight: 600;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  color: hsla(0, 0%, 100%, 0.75);
  transition: all 0.2s ease;
}

.header-nav a:hover {
  color: white;
  background: hsla(0, 0%, 100%, 0.04);
  border-color: hsla(0, 0%, 100%, 0.1);
}

.header-nav a.active {
  color: var(--emerald-light);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.header-signin {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid hsla(160, 84%, 39%, 0.35);
  background: hsla(160, 84%, 39%, 0.1);
  color: var(--emerald-light);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.header-action {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-action:hover {
  color: white;
  background: hsla(0, 0%, 100%, 0.06);
}

.header-action.header-action--primary {
  border-color: hsla(160, 84%, 39%, 0.35);
  background: hsla(160, 84%, 39%, 0.1);
  color: var(--emerald-light);
}

.header-action.header-action--primary:hover {
  background: hsla(160, 84%, 39%, 0.18);
  border-color: hsla(160, 84%, 39%, 0.5);
}

@media (min-width: 640px) {
  .header-signin {
    display: inline-flex;
  }
  .header-action {
    display: inline-flex;
  }
}

.header-signin:hover {
  background: hsla(160, 84%, 39%, 0.18);
  border-color: hsla(160, 84%, 39%, 0.5);
}

.mobile-menu .mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.mobile-menu .mobile-menu-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  padding: 0.75rem 1.5rem 0.25rem;
}

.header-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  background: hsla(0, 0%, 100%, 0.03);
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 1024px) {
  .header-menu-btn {
    display: none;
  }
}

.header-menu-btn:hover {
  background: hsla(0, 0%, 100%, 0.06);
}

.header-menu-btn svg {
  width: 18px;
  height: 18px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: hsla(0, 0%, 4%, 0.98);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.06);
  backdrop-filter: blur(12px);
  z-index: 40;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  color: hsla(0, 0%, 100%, 0.75);
  margin-bottom: 0.25rem;
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  background: hsla(0, 0%, 100%, 0.04);
  border-color: hsla(0, 0%, 100%, 0.1);
  color: white;
}

.mobile-menu a.active {
  color: var(--emerald-light);
}

/* Hero Section */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.75) 50%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(16,185,129,0.06) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 5rem 0;
  display: grid;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* Page Title Hero (non-image pages like About, Contact) */
.pt-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  position: relative;
}

/* Chip/Badge */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid hsla(160, 84%, 39%, 0.25);
  background: hsla(160, 84%, 39%, 0.08);
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  color: var(--emerald-light);
  font-size: 13px;
  font-weight: 600;
}

.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Typography */
h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
  margin: 1.25rem 0 1rem;
}

h1 .text-emerald {
  color: var(--emerald-light);
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1rem;
}

h2 .text-emerald {
  color: var(--emerald-light);
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

p {
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.text-emerald {
  color: var(--emerald-light);
}

.text-muted {
  color: hsla(0, 0%, 100%, 0.55);
}

.section-label {
  color: var(--emerald-light);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  color: white;
}

.btn-primary:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}

.btn-secondary {
  background: hsla(0, 0%, 100%, 0.03);
  border-color: hsla(0, 0%, 100%, 0.1);
  color: white;
}

.btn-secondary:hover {
  background: hsla(0, 0%, 100%, 0.06);
}

.btn-outline-emerald {
  background: hsla(160, 84%, 39%, 0.1);
  border-color: hsla(160, 84%, 39%, 0.35);
  color: var(--emerald-light);
}

.btn-outline-emerald:hover {
  background: hsla(160, 84%, 39%, 0.18);
  border-color: hsla(160, 84%, 39%, 0.5);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

/* Cards */
.card {
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: hsla(160, 84%, 39%, 0.25);
  background: hsla(160, 84%, 39%, 0.03);
  transform: translateY(-4px);
}

.card-glass {
  background: hsla(0, 0%, 7%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  border-radius: 0.75rem;
  backdrop-filter: blur(12px);
  padding: 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: hsla(160, 84%, 39%, 0.08);
  border: 1px solid hsla(160, 84%, 39%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--emerald);
}

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

/* Form Elements */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsla(0, 0%, 100%, 0.4);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: hsla(0, 0%, 0%, 0.3);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsla(0, 0%, 100%, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsla(160, 84%, 39%, 0.35);
  background: hsla(0, 0%, 0%, 0.4);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 2.75rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: hsla(0, 0%, 100%, 0.55);
  font-size: 14px;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--emerald);
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

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

@media (min-width: 1024px) {
  .lg-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .lg-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* Sections */
.section {
  padding: 6rem 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.06);
}

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

/* Stats Bar */
.stats-bar {
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.75rem;
  background: hsla(0, 0%, 100%, 0.02);
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-item {
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-right: 1px solid hsla(0, 0%, 100%, 0.06);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--emerald-light);
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: hsla(0, 0%, 100%, 0.75);
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 4rem 0 2.25rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.06);
  background: hsla(0, 0%, 0%, 0.3);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr repeat(3, auto);
    gap: 3rem;
  }
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 14px;
  color: hsla(0, 0%, 100%, 0.75);
  max-width: 32ch;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid hsla(160, 84%, 39%, 0.25);
  background: hsla(160, 84%, 39%, 0.08);
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  color: var(--emerald-light);
  font-size: 11px;
  font-weight: 600;
}

.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  animation: pulse 2s infinite;
}

.footer-nav h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 1rem;
}

.footer-nav a {
  display: block;
  font-size: 14px;
  color: hsla(0, 0%, 100%, 0.75);
  padding: 0.375rem 0;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid hsla(0, 0%, 100%, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom p {
  font-size: 13px;
  color: hsla(0, 0%, 100%, 0.75);
}

.footer-bottom small {
  display: block;
  font-size: 12px;
  color: hsla(0, 0%, 100%, 0.5);
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 13px;
  color: hsla(0, 0%, 100%, 0.75);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* Quote Form Card */
.quote-card {
  background: hsla(0, 0%, 7%, 0.05);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  border-radius: 0.75rem;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.quote-card-inner {
  padding: 1.5rem;
}

.quote-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.375rem;
}

.quote-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: white;
}

.quote-card-badge {
  font-size: 12px;
  color: var(--emerald);
  font-weight: 600;
}

.quote-card-divider {
  height: 1px;
  background: hsla(0, 0%, 100%, 0.1);
  margin: 1rem 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(16,185,129,0.10) 0%, rgba(16,185,129,0.03) 100%);
  border: 1px solid rgba(16,185,129,0.18);
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 4rem;
  }
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate.fade-left {
  transform: translateX(-40px);
}

.scroll-animate.fade-left.visible {
  transform: translateX(0);
}

.scroll-animate.fade-right {
  transform: translateX(40px);
}

.scroll-animate.fade-right.visible {
  transform: translateX(0);
}

.scroll-animate.scale {
  transform: scale(0.95);
}

.scroll-animate.scale.visible {
  transform: scale(1);
}

/* Equipment Slider - Split Screen */
.slider-split-container {
  position: relative;
  max-width: 64rem;
  margin: 0 auto;
}

.slider-split-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .slider-split-card {
    grid-template-columns: 1fr 340px;
  }
}

.slider-split-image-area {
  position: relative;
  background: hsla(0,0%,0%,0.4);
  height: 320px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .slider-split-image-area {
    height: 420px;
  }
}

.slider-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.slider-split-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsla(0,0%,0%,0.4);
  backdrop-filter: blur(4px);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.slider-split-arrow:hover {
  background: hsla(0,0%,0%,0.6);
}

.slider-split-arrow.prev { left: 0.75rem; }
.slider-split-arrow.next { right: 0.75rem; }

.slider-split-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsla(0,0%,0%,0.5);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 9999px;
  z-index: 10;
}

.slider-split-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .slider-split-info {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .slider-split-info {
    border-top: none;
    border-left: 1px solid var(--border);
  }
}

.slider-split-progress {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-split-bar {
  flex: 1;
  height: 6px;
  border-radius: 9999px;
  background: hsla(0,0%,100%,0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-split-bar.active {
  background: var(--emerald);
}

.slider-split-bar:hover {
  background: hsla(0,0%,100%,0.25);
}

.slider-split-bar.active:hover {
  background: var(--emerald);
}

/* Legacy slider classes kept for backward compatibility */
.slider-container {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.slider-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--emerald);
  width: 2rem;
  border-radius: 9999px;
}

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-hero { padding-top: 140px; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Feature list with checks */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0;
  border-top: 1px solid hsla(0, 0%, 100%, 0.06);
  font-size: 14px;
  color: hsla(0, 0%, 100%, 0.9);
}

.feature-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--emerald);
}

/* Pricing breakdown */
.pricing-breakdown {
  background: hsla(0, 0%, 0%, 0.35);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.06);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row span:first-child {
  color: hsla(0, 0%, 100%, 0.55);
  font-size: 14px;
}

.pricing-row span:last-child {
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.pricing-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0;
  border-top: 2px solid var(--emerald);
  margin-top: 0.5rem;
}

.pricing-total span:first-child {
  color: white;
  font-weight: 700;
}

.pricing-total span:last-child {
  color: var(--emerald-light);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Step indicators */
.steps-grid {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

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

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: hsla(160, 84%, 39%, 0.08);
  border: 2px solid hsla(160, 84%, 39%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--emerald);
}

.step-badge {
  display: inline-block;
  padding: 0.625rem 0.75rem;
  background: hsla(160, 84%, 39%, 0.08);
  border: 1px solid hsla(160, 84%, 39%, 0.2);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald);
}

/* FAQ Accordion */
.faq-item {
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: var(--emerald);
}

.faq-item:hover {
  border-color: hsla(160, 84%, 39%, 0.25);
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--emerald);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  font-size: 13px;
  color: hsla(0, 0%, 100%, 0.55);
  line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: hsla(160, 84%, 39%, 0.25);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--emerald);
  color: var(--emerald);
}

.testimonial-quote {
  font-size: 13px;
  color: hsla(0, 0%, 100%, 0.75);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsla(160, 84%, 39%, 0.08);
  border: 1px solid hsla(160, 84%, 39%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--emerald);
}

.testimonial-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: white;
}

.testimonial-role {
  font-size: 11px;
  color: hsla(0, 0%, 100%, 0.55);
}

/* Responsive Helpers */
@media (max-width: 640px) {
  .sm-hidden { display: none; }
}

@media (min-width: 640px) {
  .sm-show { display: block; }
}

@media (max-width: 768px) {
  .md-hidden { display: none; }
}

@media (min-width: 768px) {
  .md-show { display: block; }
}

@media (max-width: 1024px) {
  .lg-hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg-show { display: block; }
}

/* Pricing Tier Cards (QuickPay) */
.pricing-tier {
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-tier:hover {
  transform: translateY(-8px);
}

.pricing-tier.featured {
  background: linear-gradient(135deg, hsla(160, 84%, 39%, 0.12) 0%, hsla(0, 0%, 100%, 0.02) 100%);
  border: 2px solid var(--emerald);
  transform: scale(1.02);
}

.pricing-tier.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.pricing-tier-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--emerald);
  text-align: center;
  padding: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tier-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--emerald-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-tier-example {
  background: hsla(0, 0%, 0%, 0.35);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}

.pricing-tier-example.featured {
  border-color: hsla(160, 84%, 39%, 0.3);
}

/* Equipment Image Cards */
.equipment-img-card {
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.equipment-img-card:hover {
  border-color: hsla(160, 84%, 39%, 0.5);
  transform: translateY(-5px);
}

.equipment-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.equipment-img-card-body {
  padding: 1.5rem;
}

/* Requirement Check Items */
.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: hsla(0, 0%, 100%, 0.02);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 0.75rem;
}

.requirement-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--emerald);
}

/* Check List */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: hsla(0, 0%, 100%, 0.75);
  font-size: 14px;
}

.check-list li svg {
  flex-shrink: 0;
  color: var(--emerald);
}

/* Feature Card (shipper/carrier pages) */
.feature-card {
  padding: 1.75rem;
}

.feature-card .icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 0.5rem;
  background: hsla(160, 84%, 39%, 0.08);
  border: 1px solid hsla(160, 84%, 39%, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
}

.feature-card .icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--emerald);
}

/* Additional grid */
@media (min-width: 768px) {
  .md-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Hero centered variant */
.hero-centered {
  padding-top: 72px;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Hero ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: hsla(0, 0%, 4%, 0.85);
  border-top: 1px solid hsla(0, 0%, 100%, 0.06);
  padding: 1rem 0;
  backdrop-filter: blur(8px);
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: hsla(0, 0%, 100%, 0.55);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ticker-item svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
}

/* Pricing split layout */
.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 980px) {
  .pricing-split {
    grid-template-columns: 1fr;
  }
}

/* About page profile layout - responsive */
@media (min-width: 768px) {
  .about-profile-layout {
    flex-direction: row !important;
  }
}
