/* Global CSS and Design System for WebScrapingHub.com */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fira+Code:wght@400;500&display=swap');

:root {
  --bg-main: #080b11;
  --bg-card: #111726;
  --bg-card-hover: #182239;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 242, 254, 0.4);
  --primary: #00f2fe;
  --accent: #b026ff;
  --primary-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --accent-gradient: linear-gradient(135deg, #7f00ff 0%, #e100ff 100%);
  --glow-gradient: linear-gradient(90deg, #00f2fe, #b026ff, #00f2fe);
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --text-highlight: #ffffff;
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Fira Code', monospace;
  --transition-speed: 0.3s;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

h1 {
  font-size: 3rem;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

a:hover {
  color: #4facfe;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.accent-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
}

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

header .logo a {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo-icon {
  background: var(--primary-gradient);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 900;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

header nav li {
  position: relative;
}

header nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-speed) ease;
}

header nav a:hover, header nav a.active {
  color: var(--text-highlight);
}

header nav a.active {
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

/* Submenu Styles */
.has-submenu > a::after {
  content: '▼';
  font-size: 0.55rem;
  color: var(--text-muted);
  transition: transform var(--transition-speed) ease;
}

.has-submenu:hover > a::after {
  transform: rotate(180deg);
  color: var(--text-highlight);
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(17, 23, 38, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 240px;
  padding: 0.5rem 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
  z-index: 1000;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.submenu li {
  width: 100%;
}

.submenu a {
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  width: 100%;
  border-bottom: none !important;
  transition: all var(--transition-speed) ease;
}

.submenu a:hover, .submenu a.active {
  background: rgba(255, 255, 255, 0.03);
  color: var(--primary) !important;
  padding-left: 1.75rem;
}

.submenu a.active {
  border-left: 2px solid var(--primary);
  border-radius: 0;
}

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

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #080b11;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 242, 254, 0.4);
  color: #080b11;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-highlight);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: var(--primary);
}

/* Hero Section */
.hero-section {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: rgba(0, 242, 254, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(176, 38, 255, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Scraper Simulator UI */
.simulator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.simulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

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

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

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

.simulator-title {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.sim-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sim-select-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.sim-input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  outline: none;
  transition: all var(--transition-speed);
}

.sim-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px var(--border-focus);
}

.terminal-box {
  background: #04060b;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  height: 180px;
  padding: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  overflow-y: auto;
  color: #10b981;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1rem;
}

.terminal-line {
  line-height: 1.4;
  white-space: pre-wrap;
  word-break: break-all;
}

.terminal-line.info { color: #3b82f6; }
.terminal-line.warn { color: #f59e0b; }
.terminal-line.success { color: #10b981; }
.terminal-line.data { color: var(--text-muted); font-size: 0.75rem; }

/* Grid Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-speed) ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 242, 254, 0.2);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.05);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Deep SEO Content Page Styles */
.seo-page-layout {
  display: grid;
  grid-template-columns: 2.8fr 1.2fr;
  gap: 4rem;
  padding: 4rem 0 6rem;
}

.main-seo-content {
  background: rgba(17, 23, 38, 0.3);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  backdrop-filter: blur(8px);
}

.main-seo-content h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.main-seo-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.main-seo-content ul, .main-seo-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.main-seo-content li {
  margin-bottom: 0.5rem;
}

.main-seo-content strong {
  color: var(--text-highlight);
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem;
}

.sidebar-widget h3 {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.sidebar-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-widget li a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.sidebar-widget li a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
}

.faq-title {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-highlight);
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform var(--transition-speed);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 1.25rem;
  transition: max-height var(--transition-speed) cubic-bezier(1, 0, 1, 0);
}

/* Call to Action Bar */
.cta-bar {
  background: radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.1) 0%, rgba(176, 38, 255, 0.05) 90%), var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.cta-bar h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-bar p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Form Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-text p {
  margin: 0;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-highlight);
}

.form-input {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--text-main);
  outline: none;
  font-family: var(--font-family);
  transition: all var(--transition-speed);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px var(--border-focus);
}

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

/* Quote Calculator */
.quote-estimator-card {
  background: var(--bg-card-hover);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.estimator-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.estimator-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-highlight);
  margin: 0.5rem 0;
}

/* Footer */
/* Footer */
footer.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2.5rem;
  margin-top: auto;
  position: relative;
}

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

.footer-brand .logo {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Status Card Indicator */
.footer-status-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-top: 1rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

.status-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-highlight);
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-speed);
}

.footer-column a:hover {
  color: var(--primary);
  padding-left: 6px;
}

/* Newsletter Signup Form */
.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  color: var(--text-main);
  font-size: 0.85rem;
  outline: none;
  flex: 1;
  transition: all var(--transition-speed);
}

.newsletter-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-btn {
  background: var(--primary-gradient);
  color: #080b11;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.newsletter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 242, 254, 0.3);
}

/* Social Media Icons */
.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed);
  font-size: 1rem;
}

.social-icon:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 242, 254, 0.25);
  filter: grayscale(1) brightness(0); /* Converts emojis to black silhouettes on gradient */
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

/* Custom Table Design for SEO tools page */
.comparison-table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: rgba(255,255,255,0.02);
  color: var(--text-highlight);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(255,255,255,0.01);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .seo-page-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #080b11;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  header nav.active {
    display: block;
  }
  header nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }
  header nav li {
    width: 100%;
  }
  header nav a {
    width: 100%;
    justify-content: space-between;
  }
  header nav a.active {
    border-bottom: none;
    border-left: 3px solid var(--primary);
    padding-bottom: 0;
    padding-left: 8px;
  }
  .has-submenu > a::after {
    font-size: 0.5rem;
    transition: transform var(--transition-speed) ease;
  }
  .has-submenu.open > a::after {
    transform: rotate(180deg);
  }
  .submenu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-left: 1px solid var(--border-color);
    margin-top: 0.5rem;
    margin-left: 0.75rem;
    width: calc(100% - 0.75rem);
    min-width: unset;
    box-shadow: none;
    padding: 0.5rem 0;
    flex-direction: column;
    gap: 0.25rem;
  }
  .has-submenu.open .submenu {
    display: flex;
  }
}
  .hero-cta {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Logo Marquee Styling */
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
  gap: 4rem;
}

.logo-marquee-track span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.logo-marquee-track span:hover {
  opacity: 1;
  color: var(--primary);
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Metrics Styling */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.metric-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all var(--transition-speed);
}

.metric-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 242, 254, 0.05);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-highlight);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Workflow Styling */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.workflow-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: all var(--transition-speed);
}

.workflow-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.step-number {
  font-size: 2.25rem;
  font-weight: 900;
  color: rgba(0, 242, 254, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-mono);
}

.workflow-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-highlight);
}

.workflow-step p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }
}

