/* CallSteer Website - Premium Dark Theme */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Primary Colors - Blue-Cyan */
  --primary: #00C8D4;
  --primary-dark: #00A8B8;
  --primary-light: #00E0E6;
  --secondary: #6366f1;

  /* Background */
  --bg-dark: #0a0a0a;
  --bg-darker: #0d1117;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.05);

  /* Text */
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: #a0a0a0;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Status Colors */
  --success: #00C8D4;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00C8D4 0%, #00E0E6 100%);
  --gradient-glow: linear-gradient(135deg, rgba(0, 200, 212, 0.2), rgba(0, 224, 230, 0.1));

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(0, 200, 212, 0.15);
  --shadow-glow-strong: 0 4px 15px rgba(0, 200, 212, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.95);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text .brand-name {
  color: var(--text); /* White on dark sections */
}

.logo-text .brand-ai {
  color: #00C8D4; /* ALWAYS cyan */
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  padding: 24px;
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-cta {
  margin-top: 24px;
  flex-direction: column;
}

.mobile-menu .nav-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: var(--shadow-glow-strong);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 200, 212, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(0, 200, 212, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Download for Windows Button - Teal Gradient */
.btn-download-windows {
  background: var(--gradient-primary);
  color: #000;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-glow-strong);
  transition: all 0.3s ease;
}

.btn-download-windows:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 200, 212, 0.4);
}

.btn-download-windows svg {
  width: 20px;
  height: 20px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 200, 212, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 224, 230, 0.06) 0%, transparent 50%);
  animation: gradient-shift 20s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5%, 5%); }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 200, 212, 0.1);
  border: 1px solid rgba(0, 200, 212, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Checklist */
.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-muted);
}

.hero-check-item .check-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.btn-icon-left {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Hero Guarantee */
.hero-guarantee {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.hero-guarantee::before {
  content: "";
  color: var(--success);
  margin-right: 6px;
}

/* ==================== CARDS ==================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 212, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-highlight {
  position: relative;
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 200, 212, 0.05), transparent);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== FEATURES GRID ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Reduce gap from logo carousel to Features */
#features {
  padding-top: 60px;
  margin-top: 0;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  background: linear-gradient(180deg, transparent, rgba(0, 200, 212, 0.02), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-text {
  font-size: 15px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }
}

/* ==================== INDUSTRIES ==================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.industry-icon {
  margin-bottom: 12px;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.industry-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.industry-card-cta {
  border-style: dashed;
  border-color: rgba(0, 200, 212, 0.3);
}

.industry-card-cta:hover {
  border-color: var(--primary);
  background: rgba(0, 200, 212, 0.05);
}

.industry-card-cta .industry-icon svg {
  stroke: var(--primary);
}

.industry-card-cta .industry-name {
  color: var(--primary);
  font-weight: 600;
}

.industries-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 200, 212, 0.1), transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-dark);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==================== PRICING PAGE ==================== */
.pricing-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.pricing-toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  cursor: pointer;
}

.pricing-toggle-label.active {
  color: var(--text);
}

.pricing-toggle {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.pricing-toggle.monthly::after {
  transform: translateX(28px);
}

.best-value-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 200, 212, 0.1);
  border: 1px solid rgba(0, 200, 212, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
}

.pricing-message {
  max-width: 500px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
}

.pricing-card.featured {
  background: var(--gradient-glow);
  border-color: rgba(0, 200, 212, 0.3);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-card-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card-seats {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

.pricing-card-price {
  margin-top: 24px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
}

.pricing-amount .currency {
  font-size: 24px;
  font-weight: 600;
  vertical-align: super;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-billing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.pricing-annual-total {
  font-size: 11px;
  color: var(--primary);
  margin-top: 4px;
  font-weight: 500;
}

.pricing-card-features {
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

/* ==================== GUARANTEE BANNER ==================== */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(0, 200, 212, 0.1), rgba(0, 200, 212, 0.05));
  border: 1px solid rgba(0, 200, 212, 0.3);
  border-radius: var(--radius-lg);
  margin-top: 48px;
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 212, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.guarantee-icon svg {
  color: #00C8D4;
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guarantee-text strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.guarantee-text span {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* ==================== NEW COMPARISON TABLE ==================== */
.comparison-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.comparison-table-wrapper {
  max-width: 900px;
  margin: 60px auto 0;
  overflow-x: auto;
}

.comparison-table-new {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table-new th,
.comparison-table-new td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table-new thead th {
  background: rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: 16px;
}

.comparison-table-new th.gong-col {
  color: var(--text-muted);
  text-align: center;
}

.comparison-table-new th.callsteer-col {
  text-align: center;
}

.comparison-table-new th.callsteer-col.highlight {
  background: linear-gradient(135deg, rgba(0, 200, 212, 0.2), rgba(0, 200, 212, 0.05));
  color: var(--primary);
}

.comparison-table-new td.feature-name {
  font-weight: 600;
  color: var(--text);
  background: rgba(0, 0, 0, 0.15);
}

.comparison-table-new td.gong-col {
  text-align: center;
  color: var(--text-secondary);
}

.comparison-table-new td.gong-col.negative {
  color: #ef4444;
}

.comparison-table-new td.callsteer-col {
  text-align: center;
  background: rgba(0, 200, 212, 0.03);
}

.comparison-table-new td.callsteer-col.winner {
  color: var(--primary);
  font-weight: 600;
}

.comparison-table-new .check-mark {
  color: var(--primary);
  margin-left: 4px;
}

.comparison-table-new tbody tr:last-child td {
  border-bottom: none;
}

.comparison-cta {
  text-align: center;
  margin-top: 48px;
}

.comparison-summary {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .comparison-table-new th,
  .comparison-table-new td {
    padding: 14px 12px;
    font-size: 14px;
  }
}

/* ==================== COMING SOON PAGE ==================== */
.coming-soon-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--warning);
  margin-bottom: 32px;
}

.modules-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 60px auto 0;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0.5;
}

.module-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 212, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.module-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.module-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.module-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.module-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.module-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
}

/* Featured Module Card */
.module-card-featured {
  border-color: rgba(0, 200, 212, 0.3);
  background: linear-gradient(145deg, rgba(0, 200, 212, 0.05), transparent);
}

.module-card-featured::before {
  opacity: 1;
}

/* AI Post-Mortem Preview Card */
.pm-preview-card {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(145deg, #0d1117, #161b22);
  border: 1px solid rgba(0, 200, 212, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
}

.pm-preview-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 6px 12px;
  background: linear-gradient(90deg, #00C8D4, #00E0E6);
  border-radius: 12px;
  display: inline-block;
  color: #000;
}

.pm-preview-score {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 200, 212, 0.4);
}

.pm-preview-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  margin-bottom: 16px;
}

.pm-preview-insights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-preview-good,
.pm-preview-improve {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-preview-good {
  background: rgba(0, 200, 212, 0.15);
  color: var(--primary);
  border: 1px solid rgba(0, 200, 212, 0.2);
}

.pm-preview-improve {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.notify-section {
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.notify-content {
  max-width: 500px;
  margin: 0 auto;
}

.notify-form {
  max-width: 400px;
  margin: 40px auto 0;
}

.notify-input-group {
  display: flex;
  gap: 12px;
}

.notify-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s ease;
}

.notify-input::placeholder {
  color: var(--text-muted);
}

.notify-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 200, 212, 0.1);
}

@media (max-width: 900px) {
  .modules-preview {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .notify-input-group {
    flex-direction: column;
  }

  .pm-preview-score {
    font-size: 48px;
  }
}

/* ==================== CONTACT PAGE ==================== */
.contact-hero {
  padding: 160px 0 80px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  padding: 40px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 212, 0.1);
  border-radius: var(--radius-md);
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.contact-method-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 200, 212, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option {
  background: var(--bg-dark);
  color: var(--text);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 0;
    text-align: center;
  }

  .contact-methods {
    align-items: center;
  }
}

/* ==================== MANAGER DASHBOARD SECTION ==================== */
.manager-dashboard-section {
  background: var(--bg-dark);
}

.dashboard-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.dashboard-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.dashboard-feature:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.dashboard-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 200, 212, 0.1), rgba(0, 224, 230, 0.1));
  border-radius: var(--radius-md);
}

.dashboard-feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.dashboard-feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.dashboard-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.dashboard-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 992px) {
  .dashboard-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .dashboard-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== POST-MORTEM COACHING SECTION ==================== */
.post-mortem-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 200, 212, 0.03) 100%);
}

.post-mortem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.post-mortem-text .section-title {
  text-align: left;
}

.post-mortem-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 24px 0 32px;
}

.post-mortem-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.post-mortem-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.post-mortem-features li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.post-mortem-visual {
  display: flex;
  justify-content: center;
}

/* AI Coaching Card - Stunning Design */
.post-mortem-card {
  background: linear-gradient(145deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
  border: 1px solid rgba(0, 200, 212, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(0, 200, 212, 0.1),
    0 25px 50px rgba(0, 0, 0, 0.4);
}

.pm-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 200, 212, 0.2);
}

.pm-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(90deg, #00C8D4, #00E0E6);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pm-card-body {
  padding: 32px 24px;
}

.pm-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

/* AI Coaching Score - Showstopper */
.pm-score-circle {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  font-weight: 800;
  color: #00C8D4;
  text-shadow:
    0 0 20px rgba(0, 200, 212, 0.4),
    0 0 40px rgba(0, 200, 212, 0.2),
    0 0 60px rgba(0, 200, 212, 0.1);
  line-height: 1;
  letter-spacing: -2px;
  background: transparent;
  border-radius: 0;
}

.pm-score span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pm-insights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-insight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
}

.pm-insight svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pm-insight.good {
  background: rgba(0, 200, 212, 0.15);
  color: #00C8D4;
  border: 1px solid rgba(0, 200, 212, 0.3);
}

.pm-insight.improve {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

@media (max-width: 992px) {
  .post-mortem-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .post-mortem-text .section-title {
    text-align: center;
  }

  .post-mortem-features li {
    justify-content: center;
  }

  .post-mortem-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pm-score-circle {
    font-size: 72px;
  }
}

/* ==================== LOGIN PAGE ==================== */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.login-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: all 0.2s ease;
}

.login-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 200, 212, 0.1);
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.forgot-link {
  font-size: 14px;
  color: var(--primary);
  transition: opacity 0.2s ease;
}

.forgot-link:hover {
  opacity: 0.8;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.login-divider span {
  padding: 0 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.social-login {
  display: flex;
  gap: 12px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.login-footer a {
  color: var(--primary);
  font-weight: 500;
}

.login-features {
  padding-left: 40px;
}

.login-features h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-minimal {
  padding: 24px 0;
}

.footer-minimal .footer-bottom {
  border-top: none;
  padding-top: 0;
}

.footer-links-inline {
  display: flex;
  gap: 24px;
}

.footer-links-inline a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links-inline a:hover {
  color: var(--primary);
}

@media (max-width: 992px) {
  .login-container {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 480px;
  }

  .login-features {
    padding-left: 0;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .login-card {
    padding: 32px 24px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .social-login {
    flex-direction: column;
  }
}

/* ==================== LEGACY DESKTOP APP SECTION ==================== */
.legacy-app-section {
  padding: 40px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.legacy-app-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legacy-app-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
}

.legacy-app-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
}

.legacy-app-text {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.legacy-app-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.legacy-app-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .legacy-app-content {
    flex-direction: column;
    text-align: center;
  }

  .legacy-app-text {
    min-width: auto;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .section {
    padding: 60px 0;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ==================== WORKS WITH SECTION - LOGO CAROUSEL ==================== */
.works-with-section {
  padding: 50px 0 30px 0;
  margin-bottom: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.works-with-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

/* Marquee Container */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Bigger logos as requested - 48px height */
.logo-item svg,
.logo-item img {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.85;
  transition: all 0.3s ease;
  object-fit: contain;
}

.logo-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item:hover svg,
.logo-item:hover img {
  color: var(--primary);
  filter: grayscale(0%) brightness(1) drop-shadow(0 0 12px rgba(0, 200, 212, 0.5));
  opacity: 1;
  transform: scale(1.1);
}

.logo-item:hover span {
  color: var(--text);
  opacity: 1;
}

/* ==================== USE CASES SECTION ==================== */
.use-cases-section {
  background: linear-gradient(180deg, var(--bg-dark), rgba(0, 200, 212, 0.03));
}

.use-cases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.use-case-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.use-case-check {
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
}

.use-case-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

/* ==================== WHO IT'S FOR SECTION ==================== */
.who-its-for-section {
  background: var(--bg-dark);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.who-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.who-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--gradient-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.who-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.who-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    flex-direction: column;
  }

  .use-case-card {
    justify-content: center;
  }

  .works-with-logos {
    gap: 16px;
  }

  .logo-item {
    padding: 12px;
  }

  .logo-item svg,
  .logo-item img {
    width: 36px;
    height: 36px;
  }
}

/* ==================== HOW IT WORKS PAGE ==================== */
.hiw-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark), rgba(0, 200, 212, 0.02));
}

.hiw-steps-section {
  background: var(--bg-dark);
}

.hiw-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), rgba(0, 200, 212, 0.1));
}

.hiw-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.hiw-step:last-child {
  margin-bottom: 0;
}

.hiw-step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(0, 200, 212, 0.3);
}

.hiw-step-content {
  flex: 1;
  padding-top: 8px;
}

.hiw-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 212, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.hiw-step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.hiw-step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hiw-step-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hiw-step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hiw-feature-tag {
  padding: 6px 12px;
  background: rgba(0, 200, 212, 0.1);
  border: 1px solid rgba(0, 200, 212, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
}

/* Flow Diagram */
.hiw-flow-section {
  background: linear-gradient(180deg, rgba(0, 200, 212, 0.02), var(--bg-dark));
}

.hiw-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.hiw-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 120px;
  transition: all 0.3s ease;
}

.hiw-flow-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.hiw-flow-item-highlight {
  background: rgba(0, 200, 212, 0.1);
  border-color: rgba(0, 200, 212, 0.3);
}

.hiw-flow-item-highlight .hiw-flow-icon {
  background: var(--gradient-primary);
}

.hiw-flow-item-highlight .hiw-flow-icon svg {
  stroke: #000;
}

.hiw-flow-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.hiw-flow-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 212, 0.1);
  border-radius: var(--radius-md);
}

.hiw-flow-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.hiw-flow-arrow {
  color: var(--text-muted);
}

.hiw-flow-arrow svg {
  width: 24px;
  height: 24px;
}

/* Comparison Table */
.hiw-comparison-section {
  background: var(--bg-dark);
}

.hiw-comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 48px;
}

.hiw-comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hiw-comparison-table th,
.hiw-comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.hiw-comparison-table th {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hiw-comparison-table th.col-traditional {
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
}

.hiw-comparison-table th.col-callsteer {
  color: var(--primary);
  background: rgba(0, 200, 212, 0.1);
}

.hiw-comparison-table .feature-name {
  font-weight: 600;
  color: var(--text);
}

.hiw-comparison-table .col-traditional {
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.1);
}

.hiw-comparison-table .col-callsteer {
  background: rgba(0, 200, 212, 0.05);
}

.hiw-comparison-table .col-callsteer.winner {
  color: var(--primary);
  font-weight: 500;
}

.hiw-comparison-table tr:last-child td {
  border-bottom: none;
}

/* Features Grid */
.hiw-features-section {
  background: linear-gradient(180deg, var(--bg-dark), rgba(0, 200, 212, 0.02));
}

.hiw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hiw-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.hiw-feature-card:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.hiw-feature-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  flex-shrink: 0;
}

.hiw-feature-card span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 900px) {
  .hiw-steps::before {
    left: 24px;
  }

  .hiw-step-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .hiw-step {
    gap: 20px;
  }

  .hiw-flow {
    flex-direction: column;
  }

  .hiw-flow-arrow {
    transform: rotate(90deg);
  }

  .hiw-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hiw-steps::before {
    display: none;
  }

  .hiw-step {
    flex-direction: column;
    gap: 16px;
  }

  .hiw-step-number {
    align-self: flex-start;
  }

  .hiw-features-grid {
    grid-template-columns: 1fr;
  }

  .hiw-comparison-table th,
  .hiw-comparison-table td {
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* ==================== PLATFORM CHOICE CARDS ==================== */
.platform-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.platform-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

.platform-card.recommended {
  border-color: var(--primary);
  background: rgba(0, 200, 212, 0.05);
}

.platform-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--primary);
  color: #000;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.platform-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.platform-card > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.platform-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.platform-card li {
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.platform-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.platform-setup {
  display: block;
  font-size: 12px;
  color: var(--primary);
  margin-top: 8px;
}

/* ==================== DOWNLOAD SECTION ==================== */
.download-section {
  background: linear-gradient(180deg, var(--bg-dark), rgba(0, 200, 212, 0.03));
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.download-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.download-card.primary {
  background: linear-gradient(145deg, rgba(0, 200, 212, 0.08), rgba(0, 200, 212, 0.02));
  border-color: rgba(0, 200, 212, 0.3);
}

.download-card.primary:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 200, 212, 0.15);
}

.download-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #000;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 212, 0.1);
  border-radius: var(--radius-lg);
}

.download-icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
}

.download-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.download-card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.download-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.download-features li {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.download-features li:last-child {
  border-bottom: none;
}

.download-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.download-card .btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.download-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

.download-help-text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 700px;
  margin: 40px auto 0;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.download-help-text strong {
  color: var(--text);
}

@media (max-width: 768px) {
  .download-options {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ==================== WORKS WITH NOTE ==================== */
.works-with-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  padding: 0 20px;
}

/* ==================== PLATFORM NOTE ==================== */
.platform-note {
  color: var(--text-secondary);
  font-size: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.platform-note strong {
  color: var(--text);
}

/* ==================== FOOTER DISCLAIMER ==================== */
.footer-disclaimer {
  padding: 16px 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.footer-disclaimer strong {
  color: var(--text-secondary);
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
