/* SiteSpeaks Landing Page Styles */
* {
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --accent: #f1f5f9;
  --accent-light: #f8fafc;
  --section-bg1: #ffffff;
  --section-bg2: #f8fafc;
  --section-bg3: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  --white: #ffffff;
  --gray: #e2e8f0;
  --gray-light: #f1f5f9;
  --gray-dark: #64748b;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  --border-radius-md: 14px;
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fafafa;
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
body.homepage .form-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.header {
  background: var(--white);
  color: var(--text-primary);
  padding: 1rem 0;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-title {
  margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.header-subtitle {
  margin: 0.5rem 0;
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0 2rem 0;
}

/* Background Elements */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  opacity: 0.95;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  opacity: 0.7;
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 45px;
}

.hero-content {
  color: #1e293b;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: #6366f1;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1);
}

.badge-icon {
  width: 16px;
  height: 16px;
  color: #10b981;
}

/* Title */
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 50px 0 !important;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 2.5rem 0;
  color: #475569;
  font-weight: 400;
  max-width: 600px;
}

/* Benefits List */
.hero-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  font-size: 1rem;
  padding: 0.375rem 0;
  line-height: 1.4;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA Section */
.hero-cta-section {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  padding: 2rem;
  max-width: 650px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-cta-section.logged-in {
  background: rgba(255, 255, 255, 0.95);
}

.cta-content {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1e293b;
}

.cta-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}

.cta-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.35);
}

.cta-icon {
  width: 20px;
  height: 20px;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

/* Signup Form */
.hero-signup-form {
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #1e293b;
}

.form-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* .form-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
} */

.form-group input[type="email"] {
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #1e293b;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.form-group input[type="email"]::placeholder {
  color: #94a3b8;
}

.form-group input[type="email"]:focus {
  outline: none;
  border-color: #6366f1;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.signup-btn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.25);
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.signup-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.form-footer {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

.form-footer .link {
  color: #6366f1;
  text-decoration: underline;
}

.form-footer .link:hover {
  color: #4f46e5;
}

/* Demo Section */
.hero-demo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.demo-container {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.demo-screenshot {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.demo-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Floating Stats */
.demo-stats {
  position: absolute;
  top: -12px;
  right: -12px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 10px;
  padding: 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
  animation: slideInRight 0.6s ease-out;
  min-width: 90px;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
}

.stat-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 6px;
  color: white;
  font-size: 0.875rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
}

.stat-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 0.625rem;
  color: #64748b;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

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

/* Play Button */
.demo-play-btn {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.25);
}

.demo-play-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 15px 35px rgba(239, 68, 68, 0.35);
}

.play-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 16px;
  height: 16px;
}

/* Bottom Benefits */
.hero-bottom-benefits {
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,41,59,0.06);
  border: 1px solid #e5e7eb;
  padding: 0.35rem 1.3rem 0.35rem 1.3rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  max-width: 250px;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}
.benefit-card:hover {
  box-shadow: 0 4px 16px rgba(99,102,241,0.10);
  border-color: #c7d2fe;
  background: #f8fafc;
}
.benefit-icon {
  font-size: 1.7rem;
  width: 36px;
  height: 36px;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card h4 {
  font-size: 1.13rem;
  margin: 0 0 0.12rem 0;
}
.benefit-card p {
  font-size: 1.01rem;
  line-height: 1.25;
}
.benefits-container {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0.2rem 0 0.2rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-benefits-list {
    align-items: center;
  }
  
  .demo-stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .demo-play-btn {
    position: static;
    transform: none;
    margin: 1rem auto 0 auto;
    width: fit-content;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 2rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .signup-btn {
    width: 100%;
    justify-content: center;
  }
  
  .cta-stats {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .benefits-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0 0 0;
}
  .hero-container {
    padding: 0 1rem;
  }
  .demo-play-btn{
    width: 70% !important;
    justify-content: center !important;
  }
  .sections-wide {
    padding: 4rem 3rem !important;
   }
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta-section {
    padding: 1.5rem;
  }
  
  .demo-screenshot {
    padding: 1rem;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
}

.sections-wide, .sections-wide-alt, .faq-section, .features {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.sections-wide {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 7rem 6rem;
  background: var(--section-bg1);
  margin-top: 6rem;
  margin-bottom: 6rem;
  border: 1px solid var(--gray);
}
.sections-wide-alt {
  background: var(--section-bg2);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 7rem 6rem;
  margin-top: 6rem;
  margin-bottom: 6rem;
  border: 1px solid var(--gray);
}
.section-flex {
  display: flex;
  align-items: center;
  gap: 6rem;
  flex-wrap: wrap;
}
.section-img {
  width: 600px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: var(--border-radius-lg);
}
.section-content {
  flex: 1;
  min-width: 400px;
}
.section-title {
  color: var(--text-primary);
  margin-top: 0;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.section-title.center {
  text-align: center;
}
.rss-ai-title {
  color: #105edf;
  font-size: 1.95rem;
}
.section-subtitle {
  font-size: 1.375rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}
.section-subtitle.center {
  text-align: center;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 4rem auto;
  background: var(--section-bg1);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 4rem 3rem;
  border: 1px solid var(--gray);
}
.feature {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
  border-color: var(--primary-light);
}
.feature:hover::before {
  transform: scaleX(1);
}
.feature img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}
.feature:hover img {
  transform: scale(1.05);
}
.feature h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.feature p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.feature:hover .feature-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-xl);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}
.faq-section {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  padding: 5rem 4rem;
  background: var(--section-bg1);
  margin-top: 4rem;
  margin-bottom: 4rem;
  border: 1px solid var(--gray);
  position: relative;
  overflow: hidden;
}
.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(139, 92, 246, 0.02) 100%);
  z-index: 0;
  border-radius: var(--border-radius-lg);
  pointer-events: none;
}
.faq-section > * {
  position: relative;
  z-index: 1;
}
.faq-title {
  color: var(--text-primary);
  text-align: center;
  margin-top: 0;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  gap: 1rem;
}
.faq-question:hover {
  background: var(--gray-light);
}
.faq-question.active {
  background: rgba(99, 102, 241, 0.05);
  color: var(--primary);
}
.faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.faq-question:hover .faq-icon-wrapper {
  background: var(--primary);
  color: white;
}
.faq-question.active .faq-icon-wrapper {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}
.faq-icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: inherit;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  background: rgba(99, 102, 241, 0.02);
}
.faq-answer.open {
  max-height: 200px;
  padding: 1rem 2rem 1.5rem 2rem;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}
.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}
.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
  box-shadow: var(--shadow-xl);
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  padding: 0 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  background: var(--white);
  padding: 0.5rem;
}
.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  padding: 0.25rem 0;
}
.footer-nav a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: var(--border-radius);
}
.footer-social a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-disclaimer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-disclaimer small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
  display: block;
}
/* Registration Form */
.get-started-form {
  margin-top: 0;
  box-shadow: var(--shadow-xl);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  max-width: 100%;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}
.get-started-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}
.get-started-form label {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.get-started-form input[type="email"] {
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray);
  border-radius: var(--border-radius);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-primary);
}
.get-started-form input[type="email"]:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.get-started-form button {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.get-started-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.get-started-form .form-success {
  color: #10b981;
  font-weight: 500;
  margin-top: 0.5rem;
}
/* Logged-in CTA Styles */
.logged-in-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 25px rgba(99, 102, 241, 0.1);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-width: 100%;
  width: 100%;
}

.logged-in-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.cta-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.25rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.625rem 1.25rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
}

.cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive styles for logged-in CTA */
@media (max-width: 768px) {
  .logged-in-cta {
    padding: 1.25rem 1rem;
    margin: 0 1rem 1.5rem 1rem;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-subtitle {
    font-size: 0.9rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .cta-btn.primary,
  .cta-btn.secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .cta-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .logged-in-cta {
    padding: 1rem 0.75rem;
  }
  
  .cta-title {
    font-size: 1.375rem;
  }
  
  .cta-subtitle {
    font-size: 0.875rem;
  }
  
  .cta-stats {
    gap: 1.25rem;
  }
  
  .stat-number {
    font-size: 1.125rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  /* code by naina */
  .responsive-width{
    max-width: 93% !important;
  }
  .hero-desc {
    font-size: 0.89rem !important;
    max-width: 76vw !important;
}
.header {
  padding: 0;
}
.hero-header-row {
  gap: 1.3rem !important;
 }
.get-started-form {
  max-width: 93%;
  padding: 2.5rem 0.2rem 2.5rem 0.2rem !important;
 }
.get-started-form input[type="email"] {
 width: 90% !important;
}
.get-started-form button {
  width: 90% !important;
}
.hero-container {
  gap: 2.5rem !important;
}
.hero-benefits-section {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

section#benefits {
 padding: 42px 52px;
}
section#features {
  grid-template-columns: repeat(auto-fit, minmax(262px, 1fr) ) !important;
}
.feature, .section-img {
 max-width: auto;
}
.section-img {
  width: 340px;

}
img.hero-demo-img.animate-in {
  width: 80%;
}
.responsive-width-container {
  width: 98%;
}
.section-content {
  margin-bottom: -25px;
  margin-top: -54px;
   min-width: 250px;
   text-align: center;
}
p.section-subtitle {
 font-size: 1rem;
 text-align: center;
}
.responsive-margin{
  border-radius: 0 !important;
  margin-top: 0;
  margin-bottom: 0;
  box-shadow: none !important;
}
section.sections-wide.sections-wide-alt.fade-in.responsive-width-container.responsive-margin.visible {
  padding: 45px 30px;
}
.section-title.center {
  font-size: 1.5rem;
 
}
section#vision {
  padding: 110px 52px 80px 52px;
}
#vision p.section-subtitle {
  margin-bottom: 1rem;
}
.feature .microsoft-badge {
  margin: 0 auto 1rem auto !important;
}
img.section-img.vision-illustration {
  margin: -28px 0px;
}
.how-it-works-container, .testimonials-container, .faq-container {
  padding: 0rem 0rem !important;
}
.responsive-padding {
  padding: 45px 30px;
}
section#faq {
  margin: 0 auto;
}
.faq-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  
}
.faq-answer p {
 margin: 15px !important;
  }
.footer-disclaimer small {
  text-align: center;
  padding: 0px 20px;
  font-size: 0.73rem;
}
  .footer {
    margin: 0;
   padding: 2rem 0 2rem 0;
   }
  .footer-content {
    grid-template-columns: 1fr; /* stack columns vertically */
    gap: 0.5rem;                /* reduce gap for small screens */
    padding: 1rem;              /* add a little inner spacing */
    text-align: center;         /* optional: center content */
}
.footer-logo {
  margin: 0 auto;
}
  .footer-nav {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
}
.footer-nav a {
  font-size: 1.2rem;
}
.footer-social {
  justify-content: center;
}
.footer-bottom {
  padding: 18px 50px 0px 50px;
  margin-top: 1rem;
  font-size: 0.8rem;
  
}
}

/* Navigation */
.main-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: opacity 0.2s ease;
}
.logo-link:hover {
  opacity: 0.8;
}
.logo-link img {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius);
}
.logo-link span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
}
.nav-links li a:hover, .nav-links li a:focus {
  color: var(--text-primary);
  background: var(--gray-light);
}
.nav-links li a.active {
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
}
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--primary);
}
.nav-cta:hover, .nav-cta:focus {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  /* Debug styles */
  position: relative;
  z-index: 1001;
}
.nav-toggle:hover {
  background: var(--gray-light);
}
.nav-toggle .bar {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
  /* Debug styles */
  pointer-events: none;
}
.nav-toggle.open .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
/* Mobile navigation backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-backdrop.open {
  opacity: 1;
}
/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
  
}
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 3rem 0 1rem 0;
  }
  
  .hero-container {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
    padding: 0 1rem;
    min-height: auto;
  }
  
  .hero-content {
    flex: none;
    width: 100%;
    max-width: 600px;
    padding-right: 0;
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.75rem;
    text-align: center;
  }
  
  .hero-desc {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .hero-demo {
    flex: none;
    width: 100%;
    max-width: 500px;
  }
  
  .get-started-form {
    padding: 2rem 1.5rem;
  }
  
  .hero-benefits-section {
    padding: 1.5rem 1rem 0 1rem;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
  }
  
  .hero-benefit {
    padding: 1.25rem;
  }
  
  .hero-benefit-text {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 2rem 0 1rem 0;
  }
  
  .hero-container {
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  
  .hero-desc {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
  
  .get-started-form {
    padding: 1.5rem 1rem;
  }
  
  .get-started-form label {
    font-size: 1.125rem;
  }
  
  .get-started-form input[type="email"] {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }
  
  .get-started-form button {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
  
  .hero-logo {
    width: 60px;
    padding: 1rem;
  }
  
  .hero-benefits-section {
    padding: 1rem 1rem 0 1rem;
  }
  
  .hero-benefits {
    gap: 0.5rem;
  }
  
  .hero-benefit {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .hero-benefit {
    font-size: 0.9375rem;
  }
  
  .get-started-form {
    padding: 1.25rem 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    padding: 0 1rem;
    position: relative;
  }
  .nav-backdrop {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 64px; /* Height of the header */
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 2rem 1rem;
    transform: translateY(-100vh);
    transition: transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(35,64,160,0.2);
    height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links li {
    margin: 0.75rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-links li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links li:nth-child(5) { transition-delay: 0.3s; }
  .nav-links li:nth-child(6) { transition-delay: 0.35s; }
  .nav-links li:nth-child(7) { transition-delay: 0.4s; }
  .nav-links li a {
    color: var(--white);
    font-size: 1.1rem;
    padding: 1rem;
    display: block;
    text-align: center;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
  }
  .nav-links li a:hover, .nav-links li a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-2px);
  }
  .nav-cta {
    margin-top: 1rem;
    background: var(--white);
    color: var(--primary) !important;
  }
  .nav-cta:hover, .nav-cta:focus {
    background: var(--gray-light) !important;
    color: var(--primary) !important;
  }
  .hero-header-row {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    align-items: center;
  }
  .hero-logo {
    width: 60px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 600px) {
  .header-title {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 1.2rem;
  }
  .hero-desc {
    font-size: 0.98rem;
    max-width: 98vw;
  }
  .hero-demo-img {
    max-width: 90vw;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .feature, .section-img {
    min-width: 0;
    max-width: 100%;
  }
  .get-started-form {
    padding: 1rem 0.2rem 0.7rem 0.2rem;
    border-radius: 0.7rem;
  }
  .get-started-form label {
    font-size: 0.98rem;
  }
  .get-started-form input[type="email"] {
    font-size: 0.92rem;
    padding: 0.7rem 0.7rem;
  }
  .get-started-form button {
    font-size: 0.98rem;
    padding: 0.7rem 1.1rem;
  }
  .faq-section {
    padding: 1.2rem 1rem;
    border-radius: 0.7rem;
    margin-left: 0;
    margin-right: 0;
  }
}
.hero-demo {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  z-index: 1;
}
.hero-demo-img {
  width: 480px;
  max-width: 100%;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  border: 2px solid var(--accent);
  padding: 1rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.3s ease;
  animation: none !important;
  position: relative;
}

.hero-demo-img::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #2340a0, #4f46e5, #7c3aed, #2340a0);
  border-radius: 2.5rem;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes floaty {
  0% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
  25% {
    transform: translateY(-8px) scale(1.02) rotate(0.5deg);
  }
  50% {
    transform: translateY(-15px) scale(1.03) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) scale(1.02) rotate(-0.5deg);
  }
  100% { 
    transform: translateY(0) scale(1) rotate(0deg); 
  }
}

@keyframes glow {
  0%, 100% { 
    filter: drop-shadow(0 0 5px rgba(35,64,160,0.1));
  }
  50% { 
    filter: drop-shadow(0 0 15px rgba(35,64,160,0.3));
  }
}

@keyframes borderGlow {
  0%, 100% { 
    opacity: 0;
  }
  50% { 
    opacity: 0.3;
  }
}

.hero-demo-img:hover {
  transform: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.hero-demo-img:hover::before {
  opacity: 0;
}

/* Hero icon and heading side by side */
.hero-header-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
}
.hero-logo {
  width: 70px;
  min-width: 70px;
  margin-bottom: 0;
  border-radius: 1.5rem;
  box-shadow: 0 4px 18px rgba(35,64,160,0.13);
  background: var(--white);
  padding: 0.5rem;
}
.hero-title {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.5px;
  line-height: 1.13;
}
@media (max-width: 900px) {
  .hero-header-row {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    align-items: center;
  }
  .hero-logo {
    margin-bottom: 0;
  }
  .hero-title {
    font-size: 1.5rem;
  }
}

/* Animations and Interactivity */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,2,.6,1), transform 0.7s cubic-bezier(.4,2,.6,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.cta-btn, .nav-cta {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.cta-btn:hover, .nav-cta:hover, .cta-btn:focus, .nav-cta:focus {
  box-shadow: 0 4px 18px rgba(35,64,160,0.18);
  transform: translateY(-2px) scale(1.04);
}

.hero-demo-img {
  animation: none !important;
}

/* Inline style replacements */
.form-message {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
}

.form-message .success-message {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.form-message .error-message {
  color: #DC2626;
  background: rgba(220, 38, 38, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.section-title.center {
  text-align: center;
}
.benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.how-steps {
  max-width: 700px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
  color: #444;
  font-size: 1.1rem;
}
.how-step {
  margin-bottom: 1.2rem;
}
.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.testimonial {
  background: #f7f9fb;
  max-width: 320px;
  border-radius: 1.2rem;
  box-shadow: 0 4px 18px rgba(35,64,160,0.07);
  padding: 2.5rem 1.7rem 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-quote {
  font-style: italic;
  color: #444;
}
.testimonial-author {
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 0;
}

#backToTop {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 999;
  display: none;
  padding: 0.7rem 1.2rem;
  border-radius: 2rem;
  background: #2340a0;
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px rgba(35,64,160,0.13);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s, box-shadow 0.2s;
}
#backToTop:hover, #backToTop:focus {
  background: #1a2c6b;
  box-shadow: 0 4px 18px rgba(35,64,160,0.18);
  outline: 2px solid #fff;
}
:focus {
  outline: 2px solid #2340a0;
  outline-offset: 2px;
}
.noscript-warning {
  padding: 1rem;
  text-align: center;
  color: #b00;
  background: #fff3f3;
  font-size: 1.1rem;
  border-radius: 1rem;
  margin: 1rem auto;
  max-width: 600px;
}
.nav-links li a.nav-cta:hover, .nav-links li a.nav-cta:focus {
  background: var(--primary-dark);
  color: var(--white) !important;
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(35,64,160,0.18);
  transform: translateY(-2px) scale(1.04);
}

/* Enhanced hero entrance animation */
.hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-demo-img.animate-in {
  animation: none !important;
}

@keyframes heroImageEntrance {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9) rotate(-5deg);
  }
  50% {
    opacity: 0.7;
    transform: translateY(-10px) scale(1.05) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

.vision-illustration {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  border: 2px solid var(--gray);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.vision-illustration:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

/* How It Works Section */
.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.how-steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.how-step-card {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: var(--white);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.how-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
}

.step-icon {
  margin-bottom: 1.5rem;
}

.step-icon svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.how-step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  letter-spacing: -0.025em;
}

.how-step-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.step-arrow svg {
  width: 32px;
  height: 32px;
}

/* Testimonials Section */
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray);
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-avatar svg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 0.25rem 0;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: #F59E0B;
  font-size: 1rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

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

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  gap: 1rem;
}

.faq-question:hover {
  background: var(--gray-light);
}

.faq-question.active {
  background: rgba(99, 102, 241, 0.05);
  color: var(--primary);
}

.faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question:hover .faq-icon-wrapper {
  background: var(--primary);
  color: white;
}

.faq-question.active .faq-icon-wrapper {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: inherit;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
  background: rgba(99, 102, 241, 0.02);
}

.faq-answer.open {
  max-height: 200px;
  padding: 1rem 2rem 1.5rem 2rem;
  border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

/* Responsive styles for new sections */
@media (max-width: 1024px) {
  .how-steps-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .how-step-card {
    max-width: 100%;
    min-width: auto;
  }
  
  .step-arrow {
    transform: rotate(90deg);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .how-it-works-container,
  .testimonials-container,
  .faq-container {
    padding: 2rem 1rem;
  }
  
  .how-step-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
  }
  
  .faq-answer.open {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .how-step-card {
    padding: 1.5rem 1rem;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.9375rem;
  }
  
  .faq-answer {
    padding: 0 1rem;
  }
  
  .faq-answer.open {
    padding: 0 1rem 1rem 1rem;
  }
}

.faq-question:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  background: var(--gray-light);
}

.faq-question:focus .faq-icon-wrapper {
  background: var(--primary);
  color: white;
}

/* Improved button focus states */
.cta-btn:focus, .nav-cta:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  transform: translateY(-1px);
}

/* Improved form input focus */
.get-started-form input[type="email"]:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Microsoft Branding */
.microsoft-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: fit-content;
  transition: all 0.3s ease;
}

.microsoft-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(99, 102, 241, 0.25);
}

.microsoft-logo {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
  align-self: center;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1;
  align-self: center;
  white-space: nowrap;
}

.badge-text:last-child {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.microsoft-advantage {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.advantage-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.advantage-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .microsoft-badge {
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .microsoft-advantage {
    margin-top: 1.5rem;
  }
  
  .advantage-item {
    padding: 0.5rem 0.75rem;
  }
  
  .advantage-item span {
    font-size: 0.875rem;
  }
}

/* Microsoft badge in features section */
.feature .microsoft-badge {
  margin: 0 auto 0.5rem auto;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.feature .microsoft-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.feature .microsoft-logo {
  width: 18px;
  height: 18px;
  align-self: center;
  margin-bottom: 0;
}

.feature .badge-text {
  font-size: 0.8125rem;
  align-self: center;
  line-height: 1;
  white-space: nowrap;
}

/* Simple Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgb(26 26 31 / 90%);
    backdrop-filter: blur(8px);
    padding: 20px 20px 35px 20px;
    z-index: 1000;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 6px;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  letter-spacing: 0.3px;
}

.mobile-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #e0e0e0
}

.mobile-cta {
    background: white !important;
    color: #4f46e5 !important;
    font-weight: bold;
}

.mobile-cta:hover {
    background: #f3f4f6 !important;
}

/* Desktop menu */
.desktop-menu {
    display: flex;
}

/* Mobile styles */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu.active {
        display: flex;
    }
} 
@media (min-width: 992px) and (max-width: 1199px){
  .nav-links {
 gap: 15px;
   
}
.responsive-margin{
  margin: 3rem 3.5rem;
}
.features{
  grid-template-columns: 1fr;
}
section#vision {
  justify-content: center;
}
img.section-img.vision-illustration {
  max-width: 500px;
}

}

img.section-img.vision-illustration {
  padding-top: 20px;
}

/* Video CTA and Modal Styles */
.hero-demo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.demo-screenshot-wrapper {
  position: relative;
  display: inline-block;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  background: var(--white);
  padding: 1rem;
}

.demo-screenshot-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.25);
}

.hero-demo-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
  display: block;
  transition: all 0.3s ease;
}

.video-cta-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}

.demo-screenshot-wrapper:hover .video-cta-overlay {
  opacity: 1;
}

.video-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.play-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.play-icon svg {
  width: 16px;
  height: 16px;
  color: white;
  margin-left: 1px;
}

.video-play-btn:hover .play-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Professional CTA Section */
.demo-cta-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.cta-content {
  text-align: center;
}

.cta-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.025em;
}

.cta-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-primary-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border: none;
  border-radius: var(--border-radius-lg);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  text-decoration: none;
}

.cta-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.cta-stats {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Enhanced Video Modal Styles */
.video-modal {
  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;
}

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

.video-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.video-modal-close svg {
  width: 20px;
  height: 20px;
  color: white;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.video-cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem;
  text-align: center;
  color: white;
}

.video-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.video-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.video-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
  color: white;
}

.video-cta-btn svg {
  width: 16px;
  height: 16px;
}

/* Form Message Styles */
.form-message {
  margin-top: 1rem;
}

.form-message .success-message,
.form-message .error-message {
  border-radius: 12px;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

/* Responsive Video Modal */
@media (max-width: 768px) {
  .video-modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .video-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
  }
  
  .video-modal-close svg {
    width: 16px;
    height: 16px;
  }
  
  .video-cta-overlay {
    padding: 1.5rem;
  }
  
  .video-cta-title {
    font-size: 1.25rem;
  }
  
  .video-cta-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .video-modal-content {
    max-width: 98vw;
    max-height: 98vh;
  }
  
  .video-modal-close {
    top: 0.25rem;
    right: 0.25rem;
    width: 30px;
    height: 30px;
  }
  
  .video-modal-close svg {
    width: 14px;
    height: 14px;
  }
  
  .video-cta-overlay {
    padding: 1rem;
  }
  
  .video-cta-title {
    font-size: 1.125rem;
  }
  
  .video-cta-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
  }
}

/* Additional utility classes for the new design */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

/* Ensure proper z-index stacking */
.hero {
  z-index: 1;
}

.hero-background {
  z-index: 0;
}

.hero-container {
  z-index: 2;
}

.video-modal {
  z-index: 9999;
}

/* Demo Stats Bar */
.demo-stats-bar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  gap: 1rem;
}

.demo-stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.demo-stats-bar .stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.demo-stats-bar .stat-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.stat-divider {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.2), transparent);
  flex-shrink: 0;
}

/* Restyled Watch Demo Button */
.demo-play-btn {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-play-btn:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
  background: linear-gradient(135deg, #5b5beb 0%, #7c3aed 100%);
}

.demo-play-btn:active {
  transform: translateX(-50%) translateY(-1px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.play-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.play-icon svg {
  width: 12px;
  height: 12px;
  margin-left: 1px;
}

.demo-play-btn:hover .play-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.play-text {
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* Simple Video Modal */
.simple-video-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.simple-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.simple-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.simple-modal-close:hover {
  color: #ccc;
}

.simple-modal-content video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .simple-modal-content {
    max-width: 95%;
  }
  
  .simple-modal-close {
    top: -35px;
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav-links {
  
    gap: 10px;
   
}
  .hero-demo {
    margin: 0 auto;
}
.hero-demo {
  max-width: 600px;
 }
 .demo-container {
  
  max-width: 600px;
  
}
.responsive-margin{
  margin: 0;
  border-radius: 0;
}
}
@media (min-width: 481px) and (max-width: 767px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
}
.footer-nav {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 0.5rem;
}
.footer-logo {
  margin: 0 auto;
 
}
.footer-social {
 justify-content: center;
}
.responsive-margin{
  padding-top: 45px;
  padding-bottom: 45px;
  margin: 0;
  border-radius: 0;
}
.section-content {
  text-align: center;
  flex: 1;
  min-width: 300px;
}
.section-subtitle {
  font-size: 1rem;
  
}
.testimonial-header {
  flex-direction: column;
  text-align: center;
  gap: 0.75rem;
}

.testimonials-grid {
  width: 100%;
  
}
}