@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@400;500;600;700&display=swap');

:root {
  --primary-bg: #0b0f19;
  --secondary-bg: #1a1f2e;
  --tertiary-bg: #252b3a;
  --primary-text: #ffffff;
  --secondary-text: #b4bcd9;
  --accent-blue: #00d4ff;
  --accent-purple: #b24bff;
  --accent-pink: #ff006e;
  --glow-blue: rgba(0, 212, 255, 0.2);
  --glow-purple: rgba(178, 75, 255, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--primary-bg);
  color: var(--primary-text);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  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;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Sora', sans-serif;
}

.nav-logo:hover {
  color: var(--accent-purple);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--accent-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--secondary-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-blue);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 999;
  animation: slideDown 0.3s ease;
}

.mobile-nav.active {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--secondary-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  transition: var(--transition);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent-blue);
  padding-left: 0.5rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding: 120px 40px 80px;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
  font-family: 'Sora', sans-serif;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--secondary-text);
  opacity: 0.8;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  color: var(--primary-bg);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--accent-blue);
  color: var(--accent-blue);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--glow-blue);
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  top: -50px;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-purple);
  bottom: -50px;
  left: 10%;
  animation: float 10s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(2px 2px at 20px 30px, var(--accent-blue), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 60px 70px, var(--accent-purple), rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 50px 50px, var(--accent-pink), rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: particleShift 20s linear infinite;
}

@keyframes particleShift {
  0% { background-position: 0 0; }
  100% { background-position: 200px 200px; }
}

/* Product Visual */
.product-visual {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.call-interface {
  background: var(--secondary-bg);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
}

.call-header {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), rgba(178, 75, 255, 0.1));
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--accent-blue);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

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

.call-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  justify-content: center;
  min-height: 70px;
}

.wave {
  width: 4px;
  height: 50px;
  background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
  border-radius: 2px;
  animation: wave 0.6s ease-in-out infinite;
  transform-origin: bottom;
}

.wave:nth-child(2) { animation-delay: 0.1s; }
.wave:nth-child(3) { animation-delay: 0.2s; }
.wave:nth-child(4) { animation-delay: 0.3s; }
.wave:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

.conversation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.msg {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.msg.customer {
  background: rgba(255, 0, 110, 0.1);
  border-left: 3px solid var(--accent-pink);
}

.msg.ai {
  background: rgba(0, 212, 255, 0.1);
  border-left: 3px solid var(--accent-blue);
}

.msg .label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.msg p {
  margin: 0;
}

.lead-panel {
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
}

.lead-panel h4 {
  margin-bottom: 1.5rem;
  color: var(--accent-blue);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lead-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  font-size: 0.9rem;
}

.lead-item:last-child {
  border-bottom: none;
}

.lead-item span {
  color: var(--secondary-text);
}

.lead-item strong {
  color: var(--primary-text);
  font-weight: 600;
}

.lead-item.score-high strong {
  color: #10b981;
}

/* Problem Section */
.problems {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--secondary-text);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--secondary-bg);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--glow-blue), var(--glow-purple));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.problem-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.problem-card:hover::before {
  opacity: 0.1;
}

.problem-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.problem-card p {
  color: var(--secondary-text);
  line-height: 1.6;
}

/* Solution/Features Section */
.solution {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

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

.feature-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(178, 75, 255, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 30px var(--glow-blue);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.feature-card p {
  color: var(--secondary-text);
  font-size: 0.95rem;
}

/* Pipeline Section */
.pipeline {
  max-width: 1400px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.pipeline-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow-x: auto;
  padding: 2rem 0;
  margin-top: 3rem;
}

.pipeline-step {
  background: var(--secondary-bg);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  min-width: 180px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.pipeline-step:hover {
  border-color: var(--accent-blue);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(178, 75, 255, 0.1));
  transform: translateY(-5px);
  box-shadow: 0 0 30px var(--glow-blue);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.pipeline-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
  font-weight: 700;
}

.pipeline-step p {
  font-size: 0.85rem;
  color: var(--secondary-text);
}

.pipeline-arrow {
  color: var(--accent-blue);
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Metrics Section */
.metrics {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.metric-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(178, 75, 255, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.metric-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-5px);
  box-shadow: 0 0 40px var(--glow-blue);
}

.metric-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.metric-card p {
  color: var(--secondary-text);
  font-size: 0.95rem;
}

/* Architecture Section */
.architecture {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.arch-block {
  background: var(--secondary-bg);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}

.arch-block:hover {
  border-color: var(--accent-purple);
  background: linear-gradient(135deg, rgba(178, 75, 255, 0.1), rgba(0, 212, 255, 0.05));
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(178, 75, 255, 0.2);
}

.block-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.arch-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--primary-text);
}

.arch-block p {
  color: var(--secondary-text);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--secondary-bg);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 800px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--secondary-text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--accent-blue);
}

.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.demo-subtitle {
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.demo-conversation {
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  min-height: 300px;
  max-height: 400px;
  overflow-y: auto;
}

.demo-msg {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  animation: fadeInUp 0.4s ease-out;
}

.demo-msg.customer {
  background: rgba(255, 0, 110, 0.1);
  border-left: 3px solid var(--accent-pink);
  text-align: right;
}

.demo-msg.ai {
  background: rgba(0, 212, 255, 0.1);
  border-left: 3px solid var(--accent-blue);
}

.demo-msg .label {
  display: block;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  opacity: 0.7;
}

.demo-panel {
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid rgba(178, 75, 255, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
}

.demo-panel h4 {
  color: var(--accent-purple);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.demo-lead-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-lead-panel .lead-item {
  padding: 0.75rem;
  background: rgba(0, 212, 255, 0.05);
  border-left: 3px solid var(--accent-blue);
  animation: fadeInUp 0.4s ease-out;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 0.75rem;
}

.typing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-8px); }
}

/* Footer */
.footer {
  background: var(--secondary-bg);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-container {
  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: var(--accent-blue);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--secondary-text);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: var(--accent-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  color: var(--secondary-text);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 80px 20px 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .nav-container {
    padding: 0 1rem;
  }

  .call-content {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .conversation {
    max-height: 300px;
  }

  .waveform {
    min-height: 60px;
  }

  .pipeline-container {
    flex-direction: column;
    gap: 1rem;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
  }

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

  .nav-links {
    display: none;
  }

  .modal-content {
    padding: 2rem;
  }

  .demo-conversation {
    min-height: 200px;
  }

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

  section {
    padding: 80px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 20px 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .call-content {
    padding: 1rem;
  }

  .problems-grid,
  .features-grid,
  .metrics-grid,
  .architecture-grid {
    grid-template-columns: 1fr;
  }
}
