/* ============================================
   InShell - Futuristic Design System
   ============================================ */

:root {
  /* Color Palette - Professional SaaS Theme */
  --primary-blue: #2563eb;
  --primary-dark: #1e40af;
  --accent-teal: #0d9488;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-dark: #0f172a;
  /* Footer/Dark sections */

  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  /* Gradients - Subtle or Removed */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-hero: linear-gradient(to bottom, #f8fafc, #ffffff);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Fira Code', 'Courier New', monospace;

  /* Legacy mappings to prevent breakage before full cleanup */
  --primary-cyan: var(--primary-blue);
  --primary-purple: var(--primary-dark);
  --accent-pink: var(--accent-teal);
  --accent-green: var(--accent-teal);
  --bg-darker: var(--bg-dark);
  --glow-cyan: var(--shadow-sm);
  --glow-purple: var(--shadow-sm);
  --bg-card: var(--bg-white);
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo-icon {
  font-family: var(--font-mono);
  color: var(--primary-blue);
  font-size: 2rem;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg) var(--spacing-md);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease-out;
}

.hero-text .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
  box-shadow: var(--shadow-card);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-secondary);
}

.btn-secondary:hover {
  background: var(--text-secondary);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.terminal-window {
  background: #1e293b;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.terminal-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

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

.terminal-dot:nth-child(1) {
  background: #ff5f56;
}

.terminal-dot:nth-child(2) {
  background: #ffbd2e;
}

.terminal-dot:nth-child(3) {
  background: #27c93f;
}

.terminal-body {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.8;
}

.terminal-line {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: terminalType 0.5s ease-out forwards;
}

.terminal-line:nth-child(1) {
  animation-delay: 1s;
}

.terminal-line:nth-child(2) {
  animation-delay: 1.3s;
}

.terminal-line:nth-child(3) {
  animation-delay: 1.6s;
}

.terminal-line:nth-child(4) {
  animation-delay: 1.9s;
}

.terminal-line:nth-child(5) {
  animation-delay: 2.2s;
}

.terminal-prompt {
  color: #22c55e;
}

.terminal-command {
  color: #ffffff;
}

.terminal-output {
  color: #94a3b8;
}

.terminal-cursor {
  display: inline-block;
  width: 10px;
  height: 18px;
  background: var(--primary-cyan);
  animation: blink 1s infinite;
  margin-left: 2px;
}

/* ============================================
   Sections
   ============================================ */

section {
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

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

/* ============================================
   Feature Cards
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: var(--spacing-lg);
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 0, 0, 0.1);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 1.5rem;
  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;
}

/* ============================================
   Contact Form
   ============================================ */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

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

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-item-icon {
  font-size: 2rem;
  color: var(--primary-cyan);
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 12px;
}

.contact-item-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-item-content p {
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 240, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* ============================================
   Footer
   ============================================ */

footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-inverse);
}

.footer-about p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-inverse);
}

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

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-muted);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes terminalType {
  to {
    opacity: 1;
  }
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .hero-visual {
    order: -1;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  section {
    padding: var(--spacing-lg) 1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .terminal-window {
    padding: 1rem;
  }

  .terminal-body {
    font-size: 0.85rem;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.glow {
  box-shadow: var(--glow-cyan);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ============================================
   Pricing Cards
   ============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: var(--spacing-lg);
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.pricing-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.8rem 0;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features li.disabled::before {
  content: '✗';
  color: var(--text-muted);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-blue);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-rating {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-rating span {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-primary);
}

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

.testimonial-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ============================================
   Newsletter Section
   ============================================ */

.newsletter-section {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 4rem 3rem;
  margin: var(--spacing-xl) 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.newsletter-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.newsletter-section p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form .btn {
  padding: 1.2rem 3rem;
  white-space: nowrap;
}

/* ============================================
   Statistics Counter
   ============================================ */

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin: var(--spacing-lg) 0;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border-radius: 25px;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

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

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================
   Floating Action Button
   ============================================ */

.fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card), var(--glow-cyan);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0);
}

.fab.visible {
  opacity: 1;
  transform: scale(1);
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.6);
}

.fab-icon {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.fab-extended {
  width: auto;
  padding: 0 2rem;
  border-radius: 50px;
  gap: 0.5rem;
}

.fab-extended .fab-text {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

/* ============================================
   Modal / Popup
   ============================================ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 2px solid var(--primary-cyan);
  border-radius: 25px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-card), var(--glow-cyan);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--accent-pink);
  transform: rotate(90deg);
}

.modal h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form input {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
}

.modal-form input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.modal-form .btn {
  margin-top: 0.5rem;
}

/* ============================================
   Social Proof Badges
   ============================================ */

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: var(--spacing-lg) 0;
  padding: 2rem;
}

.proof-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.proof-badge:hover {
  border-color: var(--primary-cyan);
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
}

.proof-icon {
  font-size: 2rem;
  color: var(--primary-cyan);
}

.proof-text {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.proof-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================
   Download CTA Section
   ============================================ */

.download-cta {
  background: var(--primary-blue);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  margin: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Removed rotating background */

.download-cta>* {
  position: relative;
  z-index: 1;
}

.download-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.download-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: #ffffff;
  border-radius: 12px;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.download-icon {
  font-size: 2rem;
}

.download-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  text-align: left;
}

.download-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  text-align: left;
}

/* ============================================
   Responsive - Customer Acquisition
   ============================================ */

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-section {
    padding: 3rem 2rem;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .fab {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .fab-extended {
    padding: 0 1.5rem;
  }

  .modal {
    padding: 2rem;
    width: 95%;
  }

  .social-proof {
    gap: 1.5rem;
  }

  .download-cta {
    padding: 3rem 2rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .stats-section {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}