/* ==========================================================================
   Wason - Dark Mode Premium CSS (B2B SaaS)
   ========================================================================== */

/* --- CSS VARIABLES --- */
:root {
  /* Colors */
  --bg-color: #050a14;           /* Deep space blue/black */
  --bg-alt: #0b1221;             /* Slightly lighter blue/black */
  --card-bg: rgba(31, 54, 92, 0.25); /* Wason Navy Blue core color with opacity */
  --card-border: rgba(255, 255, 255, 0.08);
  
  --primary: #0066ff;            /* Action blue */
  --primary-hover: #0052cc;
  --accent: #00e5ff;             /* Electric cyan */
  --accent-glow: rgba(0, 229, 255, 0.4);
  
  --text-main: #f8fafc;          /* White */
  --text-muted: #94a3b8;         /* Gray */
  --nav-bg: rgba(5, 10, 20, 0.85);
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 100px;
  
  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Shadows & Transitions */
  --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 20px var(--accent-glow);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, .big-stat {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtitle, .section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

/* --- LAYOUT UTILS --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
}

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

.text-center {
  text-align: center;
}
.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

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

/* --- GLOW EFFECTS (Premium Feel) --- */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}
.glow-1 {
  top: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: rgba(0, 102, 255, 0.15);
}
.glow-2 {
  top: 20%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(0, 229, 255, 0.1);
}
.glow-3 {
  bottom: 0;
  left: 20%;
  width: 600px;
  height: 600px;
  background: rgba(31, 54, 92, 0.3);
}

/* --- REVEAL ANIMATIONS --- */
.reveal-up { transform: translateY(40px); opacity: 0; transition: all 0.8s ease-out; }
.reveal-left { transform: translateX(-40px); opacity: 0; transition: all 0.8s ease-out; }
.reveal-right { transform: translateX(40px); opacity: 0; transition: all 0.8s ease-out; }

.reveal-up.active, 
.reveal-left.active, 
.reveal-right.active {
  transform: translate(0);
  opacity: 1;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0047b3);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.4);
}

.btn-block {
  width: 100%;
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(5, 10, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin-right: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 61px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Forces Wason logo to be white for dark mode */
}

/* Mobile Icon */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--accent);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

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

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #b9c6d2);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2.5rem;
}
.hero-highlight i {
  color: var(--accent);
  font-size: 1.25rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
}

/* Hero UI Mockup */
.hero-visual {
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.hero-image {
  width: 100%;
  max-width: 985px; /* Aumentada un 20% adicional */
  margin: 0 auto;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 20px 40px rgba(0, 102, 255, 0.4));
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

/* --- HIGHLIGHTS --- */
.highlights {
  padding: 40px 0 80px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.highlight-item {
  background: linear-gradient(145deg, var(--card-bg), rgba(11, 18, 33, 0.8));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px var(--primary);
}
.icon-wrapper {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.highlight-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #fff;
}
.highlight-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- ABSTRACT WORKFLOW (QUE ES WASON) --- */
.abstract-workflow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.flow-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 350px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.highlight-step {
  background: rgba(0, 102, 255, 0.1);
  border-color: rgba(0, 102, 255, 0.3);
}
.finish-step {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: #fff;
}
.flow-arrow i {
  font-size: 2rem;
  color: var(--text-muted);
}

/* --- FEATURES GRID --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(31, 54, 92, 0.5);
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.3);
}
.feature-card i {
  font-size: 1.8rem;
  color: var(--accent);
  padding-top: 2px;
}
.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #fff;
}
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* --- BENEFITS ROW --- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.benefit-row:hover {
  background: rgba(31,54,92,0.4);
  transform: scale(1.01);
}
.benefit-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  line-height: 1;
}
.benefit-row:hover .benefit-number {
  color: rgba(0,229,255,0.1);
  -webkit-text-stroke: 1px var(--accent);
}
.benefit-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.benefit-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}


/* --- HOW IT WORKS (STEPPER) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}
/* Line connecting steps */
@media (min-width: 900px) {
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 55px; /* Aligned with circle */
    left: 10%; right: 10%;
    height: 1px;
    background: var(--card-border);
    z-index: 0;
  }
}
.step-card {
  position: relative;
  z-index: 1;
  background: var(--bg-color); /* Cut the line visually if need be */
  padding: 1.5rem 1rem;
}
.step-icon {
  width: 80px; height: 80px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  transition: var(--transition);
}
.step-card:hover .step-icon {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  transform: scale(1.1);
}
.step-num {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- APPLICATIONS TAGS --- */
.apps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.app-tag {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
  cursor: default;
}
.app-tag:hover {
  background: rgba(0,102,255,0.15);
  border-color: rgba(0,102,255,0.4);
  transform: translateY(-2px);
  color: #fff;
}


/* --- CONTACT FORM --- */
.contact {
  position: relative;
  overflow: hidden;
}
.contact-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.glass-form {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.form-group input, 
.form-group select {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0,0,0,0.4);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.2);
}

/* Fix select options specifically in light/browsers */
.form-group select option {
  background: var(--bg-color);
  color: #fff;
}

/* --- FOOTER --- */
.footer {
  background: #02050a;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
}
.footer-links h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.footer-links ul li {
  margin-bottom: 0.8rem;
}
.footer-links ul li a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-links ul li a:hover {
  color: var(--accent);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}


/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-highlight {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 2.5rem;
  }
  .highlights {
    margin-top: 0;
    padding: 50px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Setup */
  .mobile-menu-toggle {
    display: block;
    color: #fff;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--card-border);
    visibility: hidden;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .nav-cta {
    width: 100%;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 20px);
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    margin-top: 1rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .highlight-item {
    padding: 1.75rem 1.25rem;
  }

  .abstract-workflow {
    width: 100%;
  }

  .flow-step {
    max-width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .terminal-card {
    height: 320px;
    font-size: 0.8rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
    padding: 1.5rem 1.25rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    grid-column: span 1;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle, .section-desc {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}

/* --- ANTOINE TERMINAL & PRICING CUSTOM STYLES --- */
.terminal-card {
  background: #020610 !important;
  border: 1px solid rgba(0, 229, 255, 0.35) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(0, 229, 255, 0.2) !important;
  font-family: 'Consolas', 'Fira Code', 'Courier New', monospace !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 380px;
  width: 100%;
  margin: 0 auto;
  text-align: left !important;
}

.terminal-header {
  background: #0c1322 !important;
  padding: 12px 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: relative !important;
}

.terminal-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  flex-shrink: 0;
}

.dot-red { background: #ef4444 !important; }
.dot-yellow { background: #eab308 !important; }
.dot-green { background: #22c55e !important; }

.terminal-title {
  color: #94a3b8 !important;
  font-size: 0.82rem !important;
  font-family: 'Consolas', 'Fira Code', 'Courier New', monospace !important;
  font-weight: 600 !important;
  position: absolute !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  white-space: nowrap;
}

.terminal-body {
  padding: 18px 20px !important;
  flex-grow: 1 !important;
  overflow-y: auto !important;
  font-size: 0.88rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  text-align: left !important;
  background: #030816 !important;
}

.terminal-line {
  font-family: 'Consolas', 'Fira Code', 'Courier New', monospace !important;
  line-height: 1.5 !important;
  word-break: break-word !important;
  text-align: left !important;
}

/* Sub-agent Terminal Colors */
.terminal-compliance, .terminal-compliance * { color: #00e5ff !important; font-weight: 500; }  /* Electric Cyan */
.terminal-safety, .terminal-safety * { color: #ff9900 !important; font-weight: 500; }      /* Amber / Orange */
.terminal-reporter, .terminal-reporter * { color: #c084fc !important; font-weight: 500; }    /* Vivid Purple */
.terminal-instructor, .terminal-instructor * { color: #00ff88 !important; font-weight: 500; }  /* Neon Green */
.terminal-system, .terminal-system * { color: #60a5fa !important; }                        /* Light Blue */

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-card {
  background: linear-gradient(145deg, var(--card-bg), rgba(11, 18, 33, 0.9));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.15);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--primary);
}
.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: #000;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  min-height: 48px;
  line-height: 1.4;
}
.pricing-price {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #fff;
  line-height: 1;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: 5px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  text-align: left;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.4;
}
.pricing-feature i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}

/* Telemetry Dropzone */
.dropzone-wrapper {
  background: rgba(31, 54, 92, 0.15);
  border: 2px dashed rgba(0, 229, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1.5rem;
}
.dropzone-wrapper:hover {
  background: rgba(31, 54, 92, 0.3);
  border-color: var(--accent);
}
.dropzone-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

