:root {
  --bg-dark: #0a0a0a;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --accent-blue: #3b82f6;
  --accent-violet: #8b5cf6;
  --accent-glow: #6366f1;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --card-glass: rgba(15, 23, 42, 0.6);
  --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Mesh Background positioning */
.mesh-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--bg-dark);
}

/* Nav */
nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /* Needed for absolute positioning of mobile menu */
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.mobile-menu-btn {
  display: none;
  /* Hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 4px 30px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-hero-prominent {
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

#heroCta {
  --sl-color-success-600: #10b981;
  /* Green color */
  --sl-color-success-500: #059669;
  --sl-color-success-700: #047857;
  color: white;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.4);
  border: none;
  background: transparent;
}

#heroCta:hover {
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.6);
  transform: translateY(-3px) scale(1.02);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Compatibility styles for Original Header */
.logo-text {
  color: #fff;
  /* Adapted to dark theme */
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Hero */
.hero {
  position: relative;
  padding: 8rem 2rem 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.glass-window {
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  position: absolute;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.chat-window {
  top: 0;
  left: 0;
  width: 60%;
  height: 380px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.doc-window {
  bottom: 20px;
  right: 0;
  width: 55%;
  height: 400px;
  z-index: 1;
  opacity: 0.8;
  transform: perspective(1000px) rotateY(-10deg) scale(0.95);
}

.glass-window:hover {
  transform: scale(1.02) translateZ(0);
  z-index: 10;
  opacity: 1;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-response {
  border-left: 2px solid var(--accent-blue);
}

.connection-line {
  position: absolute;
  top: 40%;
  left: 55%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  z-index: 5;
  transform: rotate(15deg);
}

/* Features */
.features {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header h2 span {
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Pricing */
.pricing {
  padding: 6rem 2rem;
  position: relative;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--card-glass);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent-blue);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1);
  background: rgba(30, 41, 59, 0.8);
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured:hover {
  transform: translateY(-5px) scale(1.07);
  box-shadow: 0 30px 60px rgba(59, 130, 246, 0.2);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-blue);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin: 1.5rem 0;
}

.pricing-card .price span {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.7rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

/* CTA */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.2) 0%,
      rgba(139, 92, 246, 0.2) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
footer {
  background: #000;
  color: var(--text-secondary);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* === Enterprise Components === */

/* Enhanced Header */
/* === Updated Header Styles (Restored) === */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  width: 32px;
  height: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.signin-btn {
  font-size: 0.95rem;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-signin-mobile {
    display: block;
    background: var(--accent-blue);
    color: white !important;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .nav-cta {
    display: none;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  margin-bottom: 6px;
  transition: 0.3s;
}

.mobile-menu-btn span:last-child {
  margin-bottom: 0;
}

/* Hero Visual Updates */
.window-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.user-bubble {
  align-self: flex-end;
  background: var(--accent-blue);
  color: white;
  border: none;
}

.chat-metadata {
  margin-top: 0.5rem;
  display: flex;
  gap: 10px;
  align-items: center;
}

.match-badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #4ade80;
}

.source-link {
  font-size: 0.7rem;
  color: var(--accent-blue);
  cursor: pointer;
}

.doc-content {
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.8;
}

.doc-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
}

.doc-highlight {
  background: rgba(59, 130, 246, 0.2);
  padding: 5px;
  border-radius: 4px;
  color: #cbd5e1;
  border-left: 2px solid var(--accent-blue);
  margin-bottom: 10px;
}

/* Traceability Section */
.traceability-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.traceability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.traceability-logic sl-badge {
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.feature-item sl-icon {
  font-size: 1.25rem;
  color: var(--accent-blue);
}

.traceability-visual {
  position: relative;
}

.mock-chat-bubble {
  margin-bottom: 1.5rem;
  --border-color: var(--glass-border);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-doc-snippet {
  --border-color: var(--glass-border);
}

.doc-highlight-mock {
  color: var(--text-secondary);
  line-height: 1.8;
}

.doc-highlight-mock mark {
  background: rgba(59, 130, 246, 0.3);
  color: var(--accent-blue);
  padding: 2px 4px;
  border-radius: 4px;
}

/* ROI Bar */
.roi-bar {
  padding: 4rem 2rem;
  background: linear-gradient(135deg,
      rgba(59, 130, 246, 0.15) 0%,
      rgba(139, 92, 246, 0.15) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.roi-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.roi-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right,
      var(--accent-blue),
      var(--accent-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.roi-context {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Pricing Section Updates */
.pricing-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 2rem;
}

.pricing-card {
  --border-color: var(--glass-border);
  --border-radius: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-card::part(base) {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card::part(body) {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features {
  flex: 1;
}

.pricing-card:hover {
  transform: translateY(-5px);
  --border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.highlight-tier {
  --border-color: var(--accent-blue);
  --border-width: 2px;
}

.pricing-header {
  text-align: center;
  position: relative;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin: 1rem 0;
}

.per-unit {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.tier-badge {
  position: absolute;
  top: -1rem;
  right: 0;
}

.pricing-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  /* Pushes footer to bottom */
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.feature-row sl-icon {
  color: var(--accent-blue);
}

.pricing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

/* FAQ Section (Cleaned up) */
.faq-section {
  padding: 6rem 2rem;
  /* Removed background for cleaner look */
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container .section-title {
  margin-bottom: 3rem;
}

.faq-container sl-details {
  margin-bottom: 1rem;
  --border-color: rgba(255, 255, 255, 0.05);
  --border-radius: 12px;
  --background-color: transparent;
}

.faq-container sl-details::part(header) {
  background: transparent;
}

.faq-container sl-details::part(content) {
  padding-top: 0;
  color: var(--text-secondary);
}

/* Footer Enhancements */
.footer {
  background: #000;
  color: var(--text-secondary);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col.branding {
  gap: 1rem;
}

.brand-name-footer {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent-blue);
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Mobile Responsiveness --- */

@media (max-width: 1024px) {
  .hero-content {
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 3.5rem;
  }

  .traceability-grid {
    gap: 2rem;
  }

  .roi-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-text {
    margin: 0 auto;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    height: 400px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .chat-window {
    width: 80%;
    left: 10%;
  }

  .doc-window {
    width: 70%;
    right: 5%;
    bottom: 0;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
  }

  .traceability-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .traceability-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  /* Mobile header navigation */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .nav-links.mobile-active {
    display: flex;
  }

  .header-right {
    gap: 0.75rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .section-header h2,
  .section-title {
    font-size: 2rem;
  }

  .section-desc {
    font-size: 1rem;
  }

  .roi-number {
    font-size: 2rem;
  }

  .roi-context {
    font-size: 1rem;
  }
}

/* Tablet Layout Fixes */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  /* === MOBILE STACKING FOR HERO VISUALS === */
  .hero-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    /* Space for vertical line */
    position: relative;
    padding: 20px 0;
  }

  .chat-window {
    position: relative;
    width: 90%;
    left: auto;
    top: auto;
    margin: 0 auto;
    /* Center it */
    height: auto;
    min-height: 250px;
    padding: 1rem;
    transform: none !important;
    /* Disable potential transforms */
  }

  .doc-window {
    display: block;
    /* Ensure visible */
    position: relative;
    width: 90%;
    right: auto;
    bottom: auto;
    margin: 0 auto;
    /* Center it */
    transform: none !important;
  }

  /* Vertical Connection Line */
  .connection-line {
    display: block;
    position: relative;
    width: 2px;
    height: 60px;
    margin: -30px auto;
    /* Pull into gap */
    transform: none;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
    z-index: 0;
    left: auto;
    top: auto;
    bottom: auto;
  }

  /* Pulse effect on vertical line */
  .connection-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-travel-vertical 2s infinite linear;
    box-shadow: 0 0 10px var(--accent-blue);
  }

  @keyframes pulse-travel-vertical {
    0% {
      top: 0;
      opacity: 0;
    }

    20% {
      opacity: 1;
    }

    80% {
      opacity: 1;
    }

    100% {
      top: 100%;
      opacity: 0;
    }
  }

  .btn {
    width: 100%;
    display: block;
    margin-bottom: 0.8rem;
    text-align: center;
    margin-left: 0 !important;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0;
  }

  #navCta {
    display: none;
  }

  .header .brand-name {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-price {
    font-size: 2rem;
  }

  .header-left {
    gap: 0.5rem;
  }

  .header .logo-img {
    height: 28px;
  }
}

/* FAQ Section Container */
.faq-section {
  padding: 80px 0;
  position: relative;
  z-index: 10;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Title - Matching your Outfit font */
.faq-section .section-title {
  font-family: "Outfit", sans-serif;
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Individual FAQ Item - Glassmorphism style to match your site */
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(34, 197, 94, 0.4);
  /* Subtle green glow */
}

/* The Clickable Question */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #e2e8f0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Plus/Minus Icon using DoggieLawn Green */
.faq-question::after {
  content: "+";
  font-size: 24px;
  color: #22c55e;
  /* Your theme's green */
  transition: transform 0.3s ease;
}

/* Active State Styles */
.faq-item.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(34, 197, 94, 0.5);
}

.faq-item.active .faq-question::after {
  content: "−";
  transform: rotate(180deg);
}

/* The Answer Content */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease-out;
}

.faq-answer p {
  padding: 0 24px 20px 24px;
  color: #94a3b8;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  /* Adjust based on content length */
}