/* ========================================
   LeadBuddhi Corporate Website - Styles
   ======================================== */

/* CSS Variables */
:root {
  --color-bg: #0a0a0f;
  --color-bg-secondary: #0f0f14;
  --color-bg-tertiary: #1a1a24;
  --color-text: #ffffff;
  --color-text-secondary: #a1a1aa;
  --color-text-muted: #71717a;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.15);

  --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --gradient-purple: linear-gradient(135deg, #a855f7, #ec4899);
  --gradient-cyan: linear-gradient(135deg, #06b6d4, #3b82f6);
  --gradient-emerald: linear-gradient(135deg, #10b981, #14b8a6);
  --gradient-orange: linear-gradient(135deg, #f97316, #ef4444);
  --gradient-violet: linear-gradient(135deg, #8b5cf6, #a855f7);
  --gradient-pink: linear-gradient(135deg, #ec4899, #f43f5e);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -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;
}

ul {
  list-style: none;
}

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

/* ========================================
   Background Animation
   ======================================== */
.bg-animation {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
  top: -200px;
  left: 10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.2));
}

.blob-2 {
  bottom: -150px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(16, 185, 129, 0.2));
  animation-delay: -5s;
}

.blob-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
  animation-delay: -10s;
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-base);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.02);
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

.logo span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: none;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: white;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 101;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  color: white;
}

@media (max-width: 767px) {
  .navbar.mobile-nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    z-index: 99;
  }

  .navbar.mobile-nav-open .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
  }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  z-index: 1;
  padding: 160px 24px 120px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 14px;
  color: #c4b5fd;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #a78bfa;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 48px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 72px;
  }
}

.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 20px;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}

/* Dashboard Preview */
.dashboard-preview {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
  border-radius: 30px;
  filter: blur(40px);
}

.dashboard-mockup {
  position: relative;
  background: rgba(15, 15, 20, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(30, 30, 40, 0.8);
  border-bottom: 1px solid var(--color-border);
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-text-muted);
}

.mockup-dots span:first-child { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:last-child { background: #22c55e; }

.mockup-title {
  font-size: 13px;
  color: var(--color-text-muted);
}

.mockup-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 16px;
  padding: 24px;
}

.mockup-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-card {
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-chart {
  height: 140px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mockup-stat {
  height: 80px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(10, 10, 15, 0.5);
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* ========================================
   Section Styles
   ======================================== */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1400px) {
  .section-container {
    max-width: 90%;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 48px;
  }
}

.section-header p {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Features Section
   ======================================== */
.features {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 32px;
  background: rgba(26, 26, 36, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.gradient-purple { background: var(--gradient-purple); }
.gradient-cyan { background: var(--gradient-cyan); }
.gradient-emerald { background: var(--gradient-emerald); }
.gradient-orange { background: var(--gradient-orange); }
.gradient-violet { background: var(--gradient-violet); }
.gradient-pink { background: var(--gradient-pink); }

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: rgba(10, 10, 15, 0.5);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  padding: 32px;
  background: rgba(26, 26, 36, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.quote {
  font-size: 16px;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.author .name {
  font-weight: 600;
}

.author .role {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ========================================
   Team Section
   ======================================== */
.team {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
    margin: 0 auto;
  }
}

.team-card {
  padding: 32px;
  background: rgba(26, 26, 36, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: border-color var(--transition-base);
}

.team-card:hover {
  border-color: var(--color-border-hover);
}

.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  transition: transform var(--transition-base);
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-role {
  color: #a78bfa;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.linkedin-link {
  display: inline-flex;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.linkedin-link:hover {
  color: white;
}

.linkedin-link svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: rgba(10, 10, 15, 0.5);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(26, 26, 36, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #d4d4d8;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 15, 20, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}

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

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 640px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  padding: 24px;
  background: rgba(26, 26, 36, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: #60a5fa;
}

.contact-label {
  font-weight: 500;
  color: #d4d4d8;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
  position: relative;
  z-index: 1;
  padding: 120px 24px;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(15, 15, 20, 0.9), rgba(26, 26, 36, 0.8));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  filter: blur(60px);
  pointer-events: none;
}

.cta-container h2 {
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
}

.cta-container p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  position: relative;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  max-width: 400px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 14px;
  color: var(--color-text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: white;
}

/* ========================================
   Animations
   ======================================== */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-secondary);
}

/* ========================================
   Responsive Images
   ======================================== */
@media (max-width: 768px) {
  .mockup-content {
    grid-template-columns: 1fr;
  }

  .mockup-sidebar {
    flex-direction: row;
    overflow-x: auto;
  }

  .mockup-card {
    min-width: 100px;
  }

  .mockup-stats {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
  position: relative;
  z-index: 1;
  padding: 160px 24px 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 56px;
  }
}

.page-header p {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Feature List
   ======================================== */
.feature-list {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.feature-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #60a5fa;
  transition: color var(--transition-fast);
}

.feature-link:hover {
  color: #a78bfa;
}

/* ========================================
   Industries Section
   ======================================== */
.industries {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: rgba(10, 10, 15, 0.5);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.industry-card {
  padding: 32px;
  background: rgba(26, 26, 36, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.industry-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ========================================
   Contact Form Enhancements
   ======================================== */
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 15, 20, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: white;
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--transition-fast);
  cursor: pointer;
}

.form-group select:focus {
  outline: none;
  border-color: #8b5cf6;
}

.form-group select option {
  background: #1a1a24;
  color: white;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-secondary);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #8b5cf6;
  cursor: pointer;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.faq-item {
  padding: 32px;
  background: rgba(26, 26, 36, 0.5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: white;
}

.faq-item p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   Legal Content (Privacy & Terms)
   ======================================== */
.legal-content {
  position: relative;
  z-index: 1;
  padding: 40px 0 80px;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

.legal-text .last-updated {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal-text h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: white;
}

.legal-text h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 16px;
  color: #d4d4d8;
}

.legal-text p {
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-text ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-text ul li {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ========================================
   Active Nav Link
   ======================================== */
.nav-links a.active {
  color: white;
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}