@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- BRANDING DESIGN SYSTEM (LIGHT THEME) --- */
:root {
  --bg-primary: #f8fafc;           /* Clean slate white background */
  --bg-secondary: #ffffff;         /* Pure white */
  --bg-tertiary: #f1f5f9;          /* Soft light slate gray */
  
  --color-primary: #063ba2;        /* Logo Royal Blue */
  --color-primary-rgb: 6, 59, 162;
  --color-secondary: #d30f1a;      /* Logo Crimson Red */
  --color-secondary-rgb: 211, 15, 26;
  --color-accent: #ff2a3b;         /* Neon Red Accent */
  --color-accent-rgb: 255, 42, 59;
  
  --text-primary: #0f172a;         /* Deep slate blue text */
  --text-secondary: #475569;       /* Medium slate description text */
  --text-muted: #94a3b8;           /* Light gray text */
  
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-hover: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(15, 23, 42, 0.06);
  --glass-border-hover: rgba(6, 59, 162, 0.25);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-neon: 0 10px 30px rgba(6, 59, 162, 0.05);
  --shadow-neon-strong: 0 15px 40px rgba(211, 15, 26, 0.08);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* --- CRAZY BACKGROUND SLIDING GRID --- */
body::before {
  content: '';
  position: fixed;
  top: -50px;
  left: -50px;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  background-image: 
    linear-gradient(rgba(6, 59, 162, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 59, 162, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
  animation: grid-slide 20s linear infinite;
}

@keyframes grid-slide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0f172a;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-full);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* --- DYNAMIC GRADIENTS & TEXT --- */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-wrapper {
  position: relative;
  overflow: hidden;
}

/* BACKGROUND ORBS (SOFT PASTELS IN LIGHT MODE) */
.glow-orb {
  position: absolute;
  border-radius: var(--border-radius-full);
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
}

.glow-orb-1 {
  background: radial-gradient(circle, var(--color-primary) 0%, rgba(0,0,0,0) 70%);
  width: 600px;
  height: 600px;
  top: -150px;
  right: -100px;
  animation: orb-drift-1 25s infinite alternate ease-in-out;
}

.glow-orb-2 {
  background: radial-gradient(circle, var(--color-secondary) 0%, rgba(0,0,0,0) 70%);
  width: 500px;
  height: 500px;
  bottom: 20%;
  left: -150px;
  animation: orb-drift-2 22s infinite alternate ease-in-out;
}

.glow-orb-3 {
  background: radial-gradient(circle, var(--color-primary) 0%, rgba(0,0,0,0) 70%);
  width: 450px;
  height: 450px;
  top: 45%;
  right: 10%;
  animation: orb-drift-3 18s infinite alternate ease-in-out;
}

/* GLASS PANEL PANES */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
}

.glass-panel:hover {
  border-color: var(--glass-border-hover);
  background: var(--glass-bg-hover);
  box-shadow: 0 15px 35px rgba(6, 59, 162, 0.08);
}

/* --- LOGO EMBEDDED --- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
  filter: drop-shadow(0 2px 4px rgba(6, 59, 162, 0.08));
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(6, 59, 162, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(211, 15, 26, 0.25);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid rgba(6, 59, 162, 0.15);
  color: var(--color-primary);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: rgba(6, 59, 162, 0.04);
  transform: translateY(-3px);
}

/* --- NAVIGATION HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.05);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: var(--transition-normal);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* MENU TOGGLE */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-normal);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 150px 0 90px 0;
  z-index: 1;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  background: rgba(6, 59, 162, 0.06);
  border: 1px solid rgba(6, 59, 162, 0.12);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  animation: pulse-glow 1.5s infinite;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-metrics {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 30px;
}

.metric-item h4 {
  font-size: 2.1rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 5px;
}

.metric-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* HERO VISUAL MOCKUP */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(6, 59, 162, 0.1), rgba(211, 15, 26, 0.1));
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  display: block;
}

/* Floating interactive metric card */
.floating-card {
  position: absolute;
  bottom: -25px;
  left: -35px;
  width: 250px;
  padding: 22px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
  border-color: rgba(6, 59, 162, 0.12);
  background: #ffffff;
  transform: translate3d(0, 0, 90px);
}

.floating-card-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.floating-card-value {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.floating-card-graph {
  height: 55px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.graph-bar {
  flex: 1;
  background: linear-gradient(to top, var(--color-primary), var(--color-secondary));
  border-radius: 4px 4px 0 0;
  height: 20%;
}

/* --- SECTION STYLING --- */
.section {
  padding: 110px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 65px auto;
}

.section-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--border-radius-full);
  background: rgba(6, 59, 162, 0.05);
  border: 1px solid rgba(6, 59, 162, 0.12);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- CORE USP MODULES --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-tab-btn {
  padding: 24px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  background: #ffffff;
}

.feature-tab-btn.active {
  border-color: var(--color-primary);
  background: rgba(6, 59, 162, 0.03);
  box-shadow: 0 10px 30px rgba(6, 59, 162, 0.05);
}

.feature-tab-btn .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 59, 162, 0.05);
  border: 1px solid rgba(6, 59, 162, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition-fast);
}

.feature-tab-btn.active .icon-box {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(6, 59, 162, 0.3);
}

.feature-tab-btn h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.feature-tab-btn p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Solution Panels */
.features-showcase {
  margin-top: 30px;
}

.feature-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  padding: 45px;
  align-items: center;
}

.feature-panel.active {
  display: grid;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.feature-panel-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-panel-content h3 {
  font-size: 2.1rem;
  color: #0f172a;
}

.feature-panel-content .lead {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 700;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 10px 0;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-list-item svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

.feature-panel-visual {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  background-color: #0c1122; /* Keep dark inner box for contrast of screenshots */
  padding: 6px;
  background: linear-gradient(135deg, rgba(6, 59, 162, 0.08), rgba(211, 15, 26, 0.08));
}

.feature-panel-visual img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.03);
  transition: transform var(--transition-slow);
}

.feature-panel:hover .feature-panel-visual img {
  transform: scale(1.03);
}

/* Operations Panel Sub-Widget styles */
.operations-sub-widget {
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  margin-top: 10px;
  padding-top: 20px;
}

.operations-sub-widget h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ops-slider-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ops-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-tertiary);
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-secondary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(211, 15, 26, 0.4);
  transition: transform 0.1s;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.ops-truck-bed {
  height: 50px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px dashed rgba(15, 23, 42, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 4px;
}

.cargo-box {
  flex: 1;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cargo-box.loaded {
  opacity: 1;
  transform: scale(1);
}

.ops-widget-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  background: rgba(6, 59, 162, 0.04);
  border: 1px solid rgba(6, 59, 162, 0.1);
  padding: 8px 12px;
  border-radius: 4px;
}

.ops-widget-stats span {
  font-weight: 600;
  color: var(--color-primary);
}

/* --- THE VALUE PROPOSITION --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: var(--transition-normal);
}

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

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(6, 59, 162, 0.05);
  border: 1px solid rgba(6, 59, 162, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.value-card:hover .value-icon {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(6, 59, 162, 0.25);
}

.value-card h3 {
  font-size: 1.4rem;
  color: #0f172a;
}

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

/* --- DEDICATED MD & CEO PROFILE SECTION --- */
.ceo-section {
  position: relative;
  padding: 110px 0;
}

.ceo-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  padding: 55px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  align-items: center;
  border: 1px solid rgba(6, 59, 162, 0.08);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
}

.ceo-card-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 15, 26, 0.06) 0%, rgba(0,0,0,0) 70%);
  bottom: -100px;
  right: -50px;
  pointer-events: none;
}

.ceo-visual-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  position: relative;
}

.ceo-visual-wrapper img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.ceo-card:hover .ceo-visual-wrapper img {
  transform: scale(1.02);
}

.ceo-badge-tag {
  background: rgba(211, 15, 26, 0.06);
  border: 1px solid rgba(211, 15, 26, 0.15);
  color: var(--color-secondary);
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: 0.05em;
}

.ceo-card-content h3 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 5px;
}

.ceo-title-label {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 25px;
}

.ceo-quote-box {
  position: relative;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 30px;
  border-left: 3px solid var(--color-secondary);
  padding-left: 20px;
}

.ceo-vision-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 35px;
  line-height: 1.6;
}

.ceo-action-area {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ceo-email-cta h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.ceo-email-cta p {
  font-weight: 700;
  font-size: 1.15rem;
}

/* --- PRICING & SUBSCRIPTIONS --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  padding: 45px 35px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
}

.pricing-card.premium-tier {
  border-color: var(--color-secondary);
  box-shadow: 0 15px 45px rgba(211, 15, 26, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(211, 15, 26, 0.2);
}

.pricing-card-header {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 25px;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.pricing-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.price-display {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.price-text {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.price-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-feature-item svg {
  flex-shrink: 0;
  color: var(--color-secondary);
}

.pricing-feature-item.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-feature-item.disabled svg {
  color: var(--text-muted);
}

.pricing-card .btn {
  width: 100%;
}

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h3 {
  font-size: 2.2rem;
  color: #0f172a;
  margin-bottom: 15px;
}

.contact-info-header p {
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 59, 162, 0.05);
  border: 1px solid rgba(6, 59, 162, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact-text-box h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-text-box p {
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
}

.contact-form {
  padding: 45px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.05);
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 10px rgba(6, 59, 162, 0.06);
}

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

.contact-form .btn {
  width: 100%;
}

.form-status {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  text-align: center;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10b981;
  display: block;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  display: block;
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background-color: #f1f5f9;
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-area p {
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f172a;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links-col a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 30px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- DYNAMIC PARTICLES STYLING --- */
.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-particle {
  position: absolute;
  border-radius: 50%;
  filter: blur(1.5px);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(105vh) translateX(0) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.55;
  }
  85% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(-10vh) translateX(120px) scale(1.3);
    opacity: 0;
  }
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes float {
  0% { transform: translate3d(0, 0px, 90px) rotate(0deg); }
  50% { transform: translate3d(0, -12px, 90px) rotate(0.5deg); }
  100% { transform: translate3d(0, 0px, 90px) rotate(0deg); }
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(211, 15, 26, 0.3);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(211, 15, 26, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(211, 15, 26, 0);
  }
}

@keyframes pulse-glow-orb {
  0% { transform: scale(1) translateY(0); opacity: 0.15; }
  100% { transform: scale(1.15) translateY(-20px); opacity: 0.25; }
}

@keyframes orb-drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 50px) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orb-drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 70px) scale(0.92); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orb-drift-3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Reveal base configuration */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.25, 1, 0.5, 1), transform 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVENESS (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 30px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-metrics {
    justify-content: center;
  }
  .floating-card {
    display: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ceo-card {
    grid-template-columns: 1fr;
    padding: 35px;
    gap: 35px;
    text-align: center;
  }
  .ceo-quote-box {
    border-left: none;
    border-top: 2px solid var(--color-secondary);
    padding-left: 0;
    padding-top: 15px;
  }
  .ceo-action-area {
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-tertiary);
    flex-direction: column;
    padding: 50px 0;
    transition: var(--transition-normal);
    z-index: 99;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
  }
  .nav-links.active {
    left: 0;
  }
  .nav-cta {
    display: none;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* --- CANVAS MAP STYLE --- */
.bg-map-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  opacity: 0.15;
}

/* --- 3D TRANSLATIONS & PERSPECTIVES --- */
[data-tilt] {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.hero-image-wrapper {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-image {
  transform: rotateY(-14deg) rotateX(10deg) rotateZ(-1.5deg);
  box-shadow: 
    -15px 15px 35px rgba(15, 23, 42, 0.08),
    -5px 5px 15px rgba(6, 59, 162, 0.05),
    0 0 0 1px rgba(15, 23, 42, 0.03);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.hero-image-wrapper:hover .hero-image {
  transform: rotateY(-6deg) rotateX(6deg) rotateZ(-0.5deg) scale(1.01);
  box-shadow: 
    -20px 25px 45px rgba(15, 23, 42, 0.12),
    -5px 5px 20px rgba(6, 59, 162, 0.08);
}

.feature-panel-visual {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.feature-panel-visual img {
  transform: rotateY(12deg) rotateX(6deg);
  box-shadow: 12px 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.feature-panel:hover .feature-panel-visual img {
  transform: rotateY(4deg) rotateX(2deg) scale(1.02);
  box-shadow: 15px 20px 35px rgba(15, 23, 42, 0.12);
}

.ceo-card {
  perspective: 1200px;
}

.ceo-visual-wrapper {
  transform: translateZ(25px) rotateY(4deg);
  transition: transform 0.5s ease;
}

.ceo-card:hover .ceo-visual-wrapper {
  transform: translateZ(35px) rotateY(1deg);
}

.ceo-card-content {
  transform: translateZ(15px);
}

/* --- SCROLLYTELLING LOGISTICS DEMO --- */
.scrollytelling-section {
  position: relative;
  padding: 110px 0;
  background: rgba(8, 13, 33, 0.02);
}

.scrollytelling-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}

.demo-sticky-pane {
  position: sticky;
  top: 130px;
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.demo-scroll-pane {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.demo-step-card {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  transition: background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  background: transparent;
}

.demo-step-card.active {
  background: #ffffff;
  border-color: rgba(6, 59, 162, 0.08);
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.04);
}

.step-number-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(6, 59, 162, 0.05);
  border: 1px solid rgba(6, 59, 162, 0.12);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--border-radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.demo-step-card.active .step-number-badge {
  background: var(--color-primary);
  color: #ffffff;
}

.demo-step-card h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #0f172a;
}

.demo-step-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* DEMO DEVICE CONTAINER */
.demo-device-frame {
  width: 100%;
  height: 100%;
  max-height: 480px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(6, 59, 162, 0.12);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.device-header {
  height: 42px;
  background: #f1f5f9;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 6px;
  flex-shrink: 0;
}

.device-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.device-dot-red { background: #ef4444; }
.device-dot-yellow { background: #f59e0b; }
.device-dot-green { background: #10b981; }

.device-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-left: 20px;
}

.device-content {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #060b18; /* High-tech dark dashboard */
  color: #f8fafc;
}

/* STEP SCREENS */
.demo-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 35px;
  box-sizing: border-box;
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  flex-direction: column;
  gap: 15px;
}

.demo-screen.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.demo-screen h4 {
  font-size: 1.15rem;
  color: #60a5fa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

/* SCREEN 1: INQUIRY GENERATION */
.inquiry-form-sim {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sim-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

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

.sim-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sim-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #f8fafc;
  display: flex;
  align-items: center;
  min-height: 38px;
}

.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 14px;
  background-color: var(--color-accent);
  margin-left: 2px;
  animation: blink 1s infinite;
}

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

.sim-btn-primary {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 10px 20px;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 0.8rem;
  color: #ffffff;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 15px rgba(6, 59, 162, 0.3);
}

/* SCREEN 2: SENDING (CARRIER RFQ NETWORK) */
.network-nodes-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
  height: 100%;
}

.network-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.net-line {
  stroke: rgba(6, 59, 162, 0.2);
  stroke-width: 2;
  stroke-dasharray: 6 6;
}

.net-line.animating {
  stroke: var(--color-primary);
  animation: dash-flow 2s linear infinite;
}

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

.net-pulse {
  fill: var(--color-accent);
  filter: drop-shadow(0 0 4px var(--color-accent));
}

.network-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  position: absolute;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.network-node span {
  font-size: 0.55rem;
  color: var(--text-muted);
}

.node-center {
  background: var(--color-primary);
  border-color: #3b82f6;
  width: 68px;
  height: 68px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(6, 59, 162, 0.4);
}

.node-c1 { top: 20%; left: 15%; }
.node-c2 { top: 70%; left: 20%; }
.node-c3 { top: 15%; right: 18%; }
.node-c4 { top: 68%; right: 15%; }

.network-node.active {
  border-color: var(--color-accent);
  box-shadow: 0 0 15px rgba(255, 42, 59, 0.3);
}

/* SCREEN 3: REPLY ANALYSIS */
.comparison-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.analysis-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 6px;
  overflow: hidden;
}

.analysis-table th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.analysis-table td {
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.analysis-table tr.selected-row {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
}

.row-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.row-badge-gray {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.row-badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

/* SCREEN 4: OPERATION MANAGEMENT */
.ops-milestones-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 15px;
}

.ops-milestones-row::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.ops-milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  width: 25%;
}

.milestone-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0e1635;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.ops-milestone.active .milestone-dot {
  background: var(--color-primary);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(6, 59, 162, 0.5);
}

.ops-milestone.completed .milestone-dot {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.milestone-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
}

.ops-milestone.active .milestone-label {
  color: #60a5fa;
}

.ops-map-preview {
  flex: 1;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.01);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  margin-top: 10px;
}

.ops-map-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cargo-dot-anim {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  top: 45%;
  left: 20%;
  box-shadow: 0 0 8px var(--color-accent);
  animation: move-cargo-map 5s linear infinite;
}

@keyframes move-cargo-map {
  0% { left: 20%; top: 45%; }
  50% { left: 50%; top: 60%; }
  100% { left: 80%; top: 35%; }
}

/* SCREEN 5: ACCOUNTING LEDGER */
.ledger-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.invoice-preview-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius-sm);
  padding: 18px;
}

.invoice-header-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.invoice-header-row h5 {
  font-size: 0.85rem;
  color: #ffffff;
}

.invoice-status-pill {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.invoice-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.invoice-total-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 10px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

/* SCREEN 6: CLIENT DATA VAULT UPLOADS */
.upload-sim-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.upload-file-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}

.upload-progress-bar-container {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.upload-progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: width 0.1s linear;
}

.uploaded-files-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.uploaded-file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.uploaded-file-item svg {
  color: #10b981;
  flex-shrink: 0;
}

.uploaded-file-item span {
  flex-grow: 1;
}

.uploaded-file-item .file-size {
  color: var(--text-muted);
}

/* --- SCROLLYTELLING RESPONSIVENESS OVERRIDES --- */
@media (max-width: 1024px) {
  .scrollytelling-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .demo-sticky-pane {
    position: sticky;
    top: 80px; /* Just below navbar */
    height: 340px; /* Compact height for tablets/mobile */
    z-index: 10;
    margin-bottom: 20px;
  }

  .demo-device-frame {
    max-height: 100%;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  }

  .demo-screen {
    padding: 20px; /* Reduce padding from 35px */
    gap: 10px;
  }

  .demo-step-card {
    min-height: 50vh; /* Shorter scroll height for transitions */
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--glass-border);
    margin-bottom: 10px;
    z-index: 1;
  }

  .demo-step-card.active {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(6, 59, 162, 0.05);
    border-color: rgba(6, 59, 162, 0.15);
  }
  
  /* Make sure the text is readable over background map */
  .demo-scroll-pane {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .demo-sticky-pane {
    height: 300px; /* Even more compact on mobile */
    top: 70px;
  }
  
  .demo-screen {
    padding: 15px;
    gap: 8px;
  }
  
  .demo-screen h4 {
    font-size: 1rem;
    margin-bottom: 2px;
  }
  
  .analysis-table th, 
  .analysis-table td {
    padding: 8px;
    font-size: 0.72rem;
  }

  .ops-map-preview {
    min-height: 80px;
    margin-top: 5px;
  }
  
  .ops-milestones-row {
    margin-top: 5px;
  }
  
  .milestone-dot {
    width: 24px;
    height: 24px;
    font-size: 0.6rem;
  }

  .invoice-preview-card {
    padding: 12px;
  }

  .upload-sim-card {
    padding: 12px;
    gap: 10px;
  }
}

/* --- PLATFORM CAPABILITIES SECTION --- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.capability-card {
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--border-radius-md);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.03);
}

.capability-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(6, 59, 162, 0.05);
  border: 1px solid rgba(6, 59, 162, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.capability-card:hover .capability-icon {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(6, 59, 162, 0.25);
}

.capability-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #0f172a;
}

.cap-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.5;
}

.cap-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.cap-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cap-list li::before {
  content: "✓";
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.85rem;
}

.cap-benefit {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  border-top: 1px dashed rgba(15, 23, 42, 0.08);
  padding-top: 15px;
  margin-top: auto;
}

/* ROADMAP & PLAN SPLIT */
.roadmap-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 40px;
}

/* AI Premium Card Style */
.ai-premium-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  padding: 45px;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1122 0%, #060b18 100%);
  color: #ffffff;
  border: 1px solid rgba(6, 59, 162, 0.25);
  box-shadow: 0 15px 40px rgba(6, 59, 162, 0.15);
}

.ai-glow-border {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 15, 26, 0.12) 0%, rgba(0,0,0,0) 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
}

.ai-card-content h3 {
  font-size: 2.1rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.ai-card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.ai-badge-tag {
  background: rgba(255, 42, 59, 0.08);
  border: 1px solid rgba(255, 42, 59, 0.2);
  color: #ff2a3b;
  padding: 4px 12px;
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: 0.05em;
}

.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ai-feat-item {
  display: flex;
  gap: 16px;
}

.ai-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 42, 59, 0.1);
  color: #ff2a3b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(255, 42, 59, 0.15);
}

.ai-feat-item h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.ai-feat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

/* Integrations Card Style */
.integrations-card {
  padding: 45px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.integrations-header h3 {
  font-size: 2.1rem;
  color: #0f172a;
  margin-bottom: 12px;
}

.integrations-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.integration-tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.integration-tile {
  padding: 16px;
  border-radius: var(--border-radius-sm);
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.integration-tile:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  box-shadow: 0 6px 15px rgba(6, 59, 162, 0.05);
}

.tile-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(6, 59, 162, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.integration-tile:hover .tile-icon {
  background: var(--color-primary);
  color: #ffffff;
}

.tile-details h4 {
  font-size: 0.88rem;
  color: #0f172a;
}

.tile-details p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Responsiveness media queries for Capabilities grid */
@media (max-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roadmap-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .integration-tiles-grid {
    grid-template-columns: 1fr;
  }
  .ai-premium-card,
  .integrations-card {
    padding: 30px 20px;
  }
}


