@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Reset and Custom Variables */
:root {
  /* Color Palette */
  --bg-dark-primary: hsl(222, 47%, 9%);     /* Deep rich navy */
  --bg-dark-secondary: hsl(222, 47%, 13%);   /* Section contrast */
  --bg-dark-card: hsl(222, 47%, 16%);        /* Card background */
  --bg-light-surface: hsl(220, 30%, 96%);    /* Muted white/gray */
  
  --text-light-primary: hsl(210, 40%, 98%);   /* Crisp white text */
  --text-light-secondary: hsl(215, 20%, 75%); /* Muted blue-gray */
  --text-light-muted: hsl(215, 16%, 55%);     /* Deep muted text */
  
  --accent-cyan: hsl(180, 100%, 45%);         /* Primary cyan highlight */
  --accent-cyan-glow: hsla(180, 100%, 45%, 0.15);
  --accent-gold: hsl(38, 95%, 52%);           /* High conversion gold/orange */
  --accent-gold-hover: hsl(38, 95%, 46%);
  --accent-gold-glow: hsla(38, 95%, 52%, 0.25);
  
  --border-color: hsla(215, 20%, 80%, 0.08);
  --border-color-focus: hsla(180, 100%, 45%, 0.4);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --card-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.5);
  --glow-shadow-gold: 0 0 25px hsla(38, 95%, 52%, 0.4);
  --glow-shadow-cyan: 0 0 25px hsla(180, 100%, 45%, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-light-secondary);
  background-color: var(--bg-dark-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-light-primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  font-size: 1.05rem;
  font-weight: 400;
}

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

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7.5rem 0;
  position: relative;
}

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

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

/* Buttons and CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-title);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--bg-dark-primary);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-shadow-gold);
}

.btn-secondary {
  background-color: transparent;
  border-color: hsla(215, 20%, 90%, 0.3);
  color: var(--text-light-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: var(--glow-shadow-cyan);
}

.btn-accent {
  background-color: var(--accent-cyan);
  color: var(--bg-dark-primary);
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.15);
}

.btn-accent:hover {
  background-color: hsl(180, 100%, 40%);
  transform: translateY(-2px);
  box-shadow: var(--glow-shadow-cyan);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4.5rem auto;
}

.badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  background-color: var(--accent-cyan-glow);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 255, 255, 0.15);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-light-secondary);
  font-size: 1.15rem;
}

/* Floating Elements & Header Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(9, 16, 29, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 0.6rem 0;
  background-color: rgba(9, 16, 29, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
  height: 65px;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-light-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent-cyan);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #0088cc 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--bg-dark-primary);
  font-size: 1.1rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light-secondary);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
}

.nav-cta {
  margin-left: 1rem;
}

.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-light-primary);
}

/* Hero Section (Section 1) */
.hero {
  padding: 11.5rem 0 7.5rem 0;
  background-image: radial-gradient(circle at 80% 20%, hsla(180, 100%, 45%, 0.07) 0%, transparent 40%),
                    radial-gradient(circle at 20% 80%, hsla(38, 95%, 52%, 0.03) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-light-primary) 50%, hsl(210, 40%, 85%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p.lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 0.3rem;
}

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

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(9, 16, 29, 0.8) 100%);
  z-index: 1;
}

.hero-image {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-image-container:hover .hero-image {
  transform: scale(1.05);
}

.hero-badge-overlay {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(9, 16, 29, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color-focus);
  padding: 1.2rem 1.8rem;
  border-radius: 8px;
  z-index: 2;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-overlay .badge-icon {
  width: 42px;
  height: 42px;
  background-color: var(--accent-cyan-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
}

.hero-badge-overlay .badge-info h4 {
  font-size: 1.1rem;
  color: var(--text-light-primary);
}

.hero-badge-overlay .badge-info p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
}

/* Section 2: Common Factory Problems */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-bottom: 4.5rem;
}

.problem-card {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cyan) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow);
  border-color: rgba(255, 255, 255, 0.15);
}

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

.problem-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b6b; /* Muted red indicator for problems */
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(255, 107, 107, 0.1);
  transition: var(--transition-smooth);
}

.problem-card:hover .problem-icon {
  background-color: rgba(255, 107, 107, 0.1);
  transform: scale(1.05);
}

.problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
}

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

/* Section 3: Free Factory Audit Detail */
.audit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.audit-visual {
  position: relative;
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
}

.audit-badge-pill {
  position: absolute;
  top: -15px;
  right: 30px;
  background-color: var(--accent-gold);
  color: var(--bg-dark-primary);
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
}

.audit-visual h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.audit-visual p {
  color: var(--text-light-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.audit-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.audit-stat h4 {
  font-size: 2.2rem;
  color: var(--accent-cyan);
  margin-bottom: 0.2rem;
}

.audit-stat p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.audit-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

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

.audit-check {
  width: 24px;
  height: 24px;
  background-color: var(--accent-cyan-glow);
  border-radius: 50%;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: 1px solid rgba(0, 255, 255, 0.15);
  margin-top: 0.1rem;
}

.audit-item-text h4 {
  font-size: 1.1rem;
  color: var(--text-light-primary);
  margin-bottom: 0.2rem;
}

.audit-item-text p {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
}

/* Section 4: About Consultant */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
}

.about-image {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 1;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.about-experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--bg-dark-primary);
  border: 1px solid var(--accent-cyan);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.about-experience-badge h4 {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  line-height: 1;
}

.about-experience-badge p {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-content p strong {
  color: var(--text-light-primary);
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem 0;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pillar-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
}

.pillar-item p {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light-primary);
  margin-bottom: 0;
}

/* Section 5: How The Process Works */
.steps-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--border-color) 0%, var(--accent-cyan-glow) 50%, var(--border-color) 100%);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-num-circle {
  width: 65px;
  height: 65px;
  background-color: var(--bg-dark-card);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light-muted);
  margin: 0 auto 1.8rem auto;
  transition: var(--transition-smooth);
}

.step-card:hover .step-num-circle {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-shadow-cyan);
  transform: scale(1.05);
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-light-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* Section 6: ERP Demonstration */
.erp-demo-wrapper {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--card-shadow);
}

.erp-tabs-nav {
  display: flex;
  overflow-x: auto;
  gap: 0.8rem;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  scrollbar-width: thin;
}

.erp-tabs-nav::-webkit-scrollbar {
  height: 4px;
}

.erp-tabs-nav::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
}

.erp-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-light-secondary);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.erp-tab-btn:hover {
  color: var(--text-light-primary);
  background-color: rgba(255, 255, 255, 0.03);
}

.erp-tab-btn.active {
  color: var(--accent-cyan);
  background-color: var(--accent-cyan-glow);
  border-color: rgba(0, 255, 255, 0.2);
}

.erp-tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.erp-tab-content.active {
  display: block;
}

.erp-demo-grid {
  display: grid;
  grid-template-columns: 0.90fr 1.10fr;
  gap: 3.5rem;
  align-items: center;
}

.erp-demo-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.erp-demo-info p {
  color: var(--text-light-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.erp-feature-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.erp-feature-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
}

.erp-feature-pill p {
  font-size: 0.95rem;
  color: var(--text-light-primary);
  font-weight: 500;
  margin-bottom: 0;
}

/* Simulated System Screen Component */
.system-screen {
  background-color: #0b0f19;
  border: 1px solid #1a2236;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.screen-header {
  background-color: #111827;
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1a2236;
}

.screen-dots {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.screen-title {
  font-family: var(--font-title);
  font-size: 0.8rem;
  color: var(--text-light-muted);
  font-weight: 500;
}

.screen-body {
  padding: 2rem;
  font-family: monospace;
}

/* Dashboard Mock components */
.mock-dashboard {
  color: #a0aec0;
}

.mock-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mock-stat-card {
  background-color: #171e2e;
  border: 1px solid #2d3748;
  padding: 1rem;
  border-radius: 6px;
}

.mock-stat-label {
  font-size: 0.7rem;
  color: #718096;
  text-transform: uppercase;
}

.mock-stat-val {
  font-size: 1.2rem;
  font-weight: bold;
  color: #f7fafc;
  margin-top: 0.2rem;
}

.mock-stat-val.green { color: #48bb78; }
.mock-stat-val.yellow { color: #ecc94b; }
.mock-stat-val.blue { color: #4299e1; }

.mock-chart {
  background-color: #171e2e;
  border: 1px solid #2d3748;
  padding: 1rem;
  border-radius: 6px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  height: 90px;
  gap: 0.5rem;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent-cyan) 0%, rgba(0, 255, 255, 0.1) 100%);
  border-radius: 3px 3px 0 0;
  transition: height 1s ease;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: #718096;
  margin-top: 0.5rem;
}

/* Section 7: Industries Served */
.industries-wrapper {
  text-align: center;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.industry-tag {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  color: var(--text-light-primary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.industry-tag:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-4px);
  box-shadow: var(--glow-shadow-cyan);
}

.industry-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
}

/* Section 8: Lead Form */
.form-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.form-info h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.form-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
  margin-bottom: 2.5rem;
}

.form-trust-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.trust-bullet {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.bullet-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-cyan-glow);
  border-radius: 8px;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bullet-text h4 {
  font-size: 1.1rem;
  color: var(--text-light-primary);
  margin-bottom: 0.2rem;
}

.bullet-text p {
  font-size: 0.9rem;
  color: var(--text-light-muted);
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   LEAD FORM — CLEAN MOBILE-FIRST DESIGN
═══════════════════════════════════════════════════════ */

.lead-form-wrapper {
  background: hsl(222, 47%, 12%);
  border: 1px solid rgba(0, 230, 230, 0.15);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
  position: relative;
}

.lead-form-wrapper h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: #fff;
}

.lead-form-wrapper p.form-subtitle {
  font-size: 0.92rem;
  color: var(--text-light-secondary);
  margin-bottom: 1.8rem;
}

/* Grid — single column on all screens for this form */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Field group */
.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group.full-width {
  grid-column: span 1;
}

/* Label */
.form-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-title);
  font-size: .82rem;
  font-weight: 600;
  color: hsl(215, 18%, 72%);
  margin-bottom: .4rem;
  text-transform: none;
  letter-spacing: 0;
}

.form-label i {
  font-size: .82rem;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

/* Required star */
.req-star {
  color: #ff6b6b;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
}

/* Input / Select / Textarea — clean, no icon inside */
.form-control {
  width: 100%;
  background-color: hsl(222, 47%, 8%);
  border: 1.5px solid hsl(220, 25%, 22%);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .9rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.form-control::placeholder {
  color: hsl(215, 14%, 38%);
}

/* Focus — cyan border + subtle glow */
.form-control:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px hsla(180, 100%, 45%, .1);
  background-color: hsl(222, 47%, 10%);
}

/* Select dropdown arrow */
select.form-control {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%2300e5e5' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select.form-control option {
  background-color: hsl(222, 47%, 12%);
  color: #fff;
}

/* Textarea */
textarea.form-control {
  resize: none;
  min-height: 100px;
  line-height: 1.6;
}

/* Error state */
.form-group.error .form-control {
  border-color: #ff5f5f;
  box-shadow: 0 0 0 3px rgba(255,95,95,.1);
}

.error-message {
  display: none;
  font-size: .78rem;
  font-weight: 500;
  color: #ff7070;
  margin-top: .3rem;
}

.form-group.error .error-message {
  display: block;
}

/* Valid state */
.form-group.valid .form-control {
  border-color: #2ecc71;
}

/* Disclaimer */
.form-disclaimer {
  font-size: .78rem;
  color: var(--text-light-muted);
  margin-top: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
}

.form-disclaimer i { color: #2ecc71; }


/* Section 9: FAQ */


.lead-form-wrapper p.form-subtitle::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--accent-cyan);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Grid */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;   /* Mobile: always 1 col */
  gap: 0;
}

/* Individual field group */
.form-group {
  margin-bottom: 1.1rem;
  position: relative;
}

.form-group.full-width {
  grid-column: span 1;
}

/* Label */
.form-label {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-title);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: hsl(215, 20%, 68%);
  margin-bottom: .45rem;
  text-transform: none;
}

.form-label i {
  color: var(--accent-cyan);
  font-size: .85rem;
  width: 14px;
  text-align: center;
}

/* Input wrapper — for prefix icon */
.input-wrapper {
  position: relative;
}

.input-prefix-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-cyan);
  font-size: .9rem;
  pointer-events: none;
  z-index: 2;
}

.input-wrapper textarea ~ .input-prefix-icon,
.input-prefix-icon.textarea-icon {
  top: 1.1rem;
  transform: none;
}

/* The actual input/select/textarea */
.form-control {
  width: 100%;
  background-color: hsl(222, 47%, 8%);
  border: 1.5px solid hsl(222, 30%, 25%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .85rem 1rem .85rem 2.8rem;  /* left pad for icon */
  border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-control::placeholder {
  color: hsl(215, 16%, 42%);
  font-size: .95rem;
}

/* Focus state — glowing cyan left-border accent */
.form-control:focus {
  outline: none;
  background-color: hsl(222, 47%, 10%);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px hsla(180, 100%, 45%, .12), inset 3px 0 0 var(--accent-cyan);
}

/* Textarea — no icon padding override needed, handled by class */
textarea.form-control {
  resize: none;
  min-height: 110px;
  padding-top: 1rem;
  line-height: 1.6;
}

/* Select custom arrow */
select.form-control {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%2300e5e5' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.8rem;
  cursor: pointer;
}

select.form-control option {
  background-color: hsl(222, 47%, 12%);
  color: #fff;
}

/* ── Valid state (user has filled field correctly) */
.form-group.valid .form-control {
  border-color: #2ecc71;
  box-shadow: 0 0 0 3px rgba(46,204,113,.1);
}

.form-group.valid .input-prefix-icon {
  color: #2ecc71;
}

/* ── Error state */
.form-group.error .form-control {
  border-color: #ff5f5f;
  box-shadow: 0 0 0 3px rgba(255,95,95,.12);
  background-color: rgba(255,95,95,.03);
}

.form-group.error .input-prefix-icon {
  color: #ff5f5f;
}

.error-message {
  display: none;
  font-size: .78rem;
  font-weight: 500;
  color: #ff7070;
  margin-top: .3rem;
  padding-left: .2rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

/* Divider between name/company row and mobile/email row (desktop) */
.form-row-divider {
  grid-column: span 2;
  height: 1px;
  background: var(--border-color);
  margin: .4rem 0;
}

.form-disclaimer {
  font-size: .78rem;
  color: var(--text-light-muted);
  margin-top: 1.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.form-disclaimer i { color: #2ecc71; }

/* Section 9: FAQ */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 2.2rem;
  cursor: pointer;
  background: transparent;
  width: 100%;
  border: none;
  text-align: left;
}

.faq-question h3 {
  font-size: 1.15rem;
  color: var(--text-light-primary);
  font-weight: 600;
  transition: var(--transition-fast);
}

.faq-toggle-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text-light-muted);
  transition: var(--transition-smooth);
}

.faq-toggle-icon::before, .faq-toggle-icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle-icon::before {
  width: 14px;
  height: 2px;
}

.faq-toggle-icon::after {
  width: 2px;
  height: 14px;
  transition: var(--transition-smooth);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 2.2rem 2.2rem 2.2rem;
  font-size: 0.98rem;
  color: var(--text-light-secondary);
  line-height: 1.7;
}

/* FAQ Active state */
.faq-item.active {
  border-color: rgba(0, 255, 255, 0.2);
}

.faq-item.active .faq-question h3 {
  color: var(--accent-cyan);
}

.faq-item.active .faq-toggle-icon {
  color: var(--accent-cyan);
  transform: rotate(90deg);
}

.faq-item.active .faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Section 10: Final CTA */
.final-cta {
  background-image: radial-gradient(circle at 50% 50%, hsla(180, 100%, 45%, 0.08) 0%, transparent 60%);
  text-align: center;
  padding: 8.5rem 0;
}

.final-cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

.final-cta p {
  font-size: 1.25rem;
  color: var(--text-light-secondary);
  margin-bottom: 2.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer styling */
footer {
  background-color: #060a12;
  border-top: 1px solid var(--border-color);
  padding: 4.5rem 0 3rem 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-light-secondary);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  color: var(--text-light-muted);
}

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

/* Widgets: WhatsApp Button & Mobile Sticky CTA */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  background-color: rgba(9, 16, 29, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color-focus);
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-mobile-cta-text {
  display: flex;
  flex-direction: column;
}

.sticky-mobile-cta-text h4 {
  font-size: 0.9rem;
  line-height: 1.2;
}

.sticky-mobile-cta-text p {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
}

.sticky-mobile-cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* Success Popup Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-content {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-color-focus);
  padding: 3.5rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: var(--card-shadow);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-success-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-cyan-glow);
  border-radius: 50%;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 1.8rem auto;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--text-light-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Scroll Animation Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-badge-overlay {
    bottom: -10px;
    left: 10px;
  }
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .audit-split {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-image-wrapper {
    max-width: 450px;
    margin: 0 auto;
  }
  .erp-demo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-split {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .hero-content h1 {
    font-size: 2.6rem;
  }
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .steps-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps-container::before {
    display: none;
  }
  .step-num-circle {
    margin-bottom: 1rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .lead-form-wrapper {
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  /* Mobile Navigation Menu */
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-dark-primary);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    z-index: 99;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    bottom: 75px; /* Adjust to sit above sticky footer on mobile */
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS SECTION
═══════════════════════════════════════════════════════════ */

.reviews-section {
  overflow: hidden;
}

/* Star rating display */
.star-rating {
  display: flex;
  gap: .15rem;
  margin-bottom: .8rem;
}

.star-rating i {
  color: var(--accent-gold);
  font-size: .9rem;
}

/* Scrolling reviews track */
.reviews-track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 2rem;
}

.reviews-track-wrapper::before,
.reviews-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.reviews-track-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark-primary) 0%, transparent 100%);
}

.reviews-track-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-dark-primary) 0%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollReviews 40s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Single review card */
.review-card {
  background: linear-gradient(145deg, hsl(222,47%,14%) 0%, hsl(222,47%,12%) 100%);
  border: 1px solid hsla(180,100%,45%,.08);
  border-radius: 14px;
  padding: 1.8rem;
  width: 320px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.review-card:hover {
  border-color: hsla(180,100%,45%,.2);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.review-text {
  font-size: .97rem;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  position: relative;
}

.review-text::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--accent-cyan);
  opacity: .2;
  position: absolute;
  top: -1rem;
  left: -.3rem;
  line-height: 1;
}

.reviewer-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-cyan);
  flex-shrink: 0;
}

.reviewer-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #0088cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bg-dark-primary);
  flex-shrink: 0;
}

.reviewer-info h4 {
  font-size: 1rem;
  color: var(--text-light-primary);
  margin-bottom: .1rem;
}

.reviewer-info p {
  font-size: .8rem;
  color: var(--text-light-muted);
  margin-bottom: 0;
}

.verified-badge {
  margin-left: auto;
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.2);
  color: #2ecc71;
  font-size: .7rem;
  font-weight: 600;
  padding: .25rem .6rem;
  border-radius: 4px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: .05em;
  flex-shrink: 0;
}

/* Google / WhatsApp review source icons */
.review-source {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-light-muted);
  margin-top: .6rem;
}

/* Overall rating summary bar */
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-bottom: 3rem;
}

.rating-big {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.rating-label {
  font-size: .9rem;
  color: var(--text-light-muted);
}

/* ═══════════════════════════════════════════════════════════
   PAST WORK DONE — CASE STUDIES SECTION
═══════════════════════════════════════════════════════════ */

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .case-studies-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .case-studies-grid { grid-template-columns: 1fr; }
}

.case-card {
  background: linear-gradient(145deg, hsl(222,47%,14%) 0%, hsl(222,47%,12%) 100%);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,230,230,.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.case-card-top {
  padding: 1.6rem 1.6rem 0;
}

.case-industry-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-cyan-glow);
  border: 1px solid rgba(0,230,230,.15);
  color: var(--accent-cyan);
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .3rem .8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.case-card-top h3 {
  font-size: 1.2rem;
  color: var(--text-light-primary);
  margin-bottom: .6rem;
  line-height: 1.35;
}

.case-card-top p {
  font-size: .9rem;
  color: var(--text-light-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-color);
  margin-top: 1.4rem;
}

.case-metric {
  padding: 1rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.case-metric:last-child {
  border-right: none;
}

.case-metric .metric-val {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: .25rem;
}

.case-metric .metric-val.gold {
  color: var(--accent-gold);
}

.case-metric .metric-val.green {
  color: #2ecc71;
}

.case-metric p {
  font-size: .72rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 0;
}

.case-result-bar {
  padding: .9rem 1.6rem;
  background: rgba(0,230,230,.04);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-light-secondary);
}

.case-result-bar i {
  color: #2ecc71;
  font-size: .9rem;
}
