/* 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;
}
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;
}
.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%, #ffffff 100%);
  padding: 4rem 0 2rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}
.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
  min-height: 70vh;
}
.hero-content {
  flex: 1 1 55%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 1;
  padding-right: 1rem;
  color: var(--text-primary);
  max-width: 700px;
}
.hero-logo {
  width: 80px;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  padding: 1.2rem;
  transition: transform 0.3s ease;
}
.hero-logo:hover {
  transform: scale(1.05);
}
.hero-title {
  font-size: 4rem;
  margin: 0 0 1.5rem 0;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 2px 4px rgba(99,102,241,0.04);
  max-width: 100%;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.375rem;
  margin: 0 0 2rem 0;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 100%;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(99,102,241,0.04);
}
.hero-benefits-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 0 2rem;
  position: relative;
  z-index: 1;
}
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.hero-benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
  background: rgba(255, 255, 255, 0.95);
}
.hero-benefit::before {
  content: '';
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.hero-benefit:nth-child(1)::before {
  content: '✓';
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}
.hero-benefit:nth-child(2)::before {
  content: '⚡';
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}
.hero-benefit:nth-child(3)::before {
  content: '🚀';
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}
.hero-benefit-text {
  font-size: 1.125rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}
.cta-btn {
  background: var(--white);
  color: var(--primary);
  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;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--gray-light);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}
.cta-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}
.cta-btn:disabled::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes spin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}
.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: 1.5rem 2rem 1.5rem 2rem;
}
.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;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.025em;
  width: 100%;
}
.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;
}
.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;
}
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;
}
  .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 {
  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: floaty 4s ease-in-out infinite alternate,
             glow 6s ease-in-out infinite;
  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: scale(1.08) rotate(-1deg);
  box-shadow: 0 30px 80px rgba(35,64,160,0.35);
  filter: drop-shadow(0 0 20px rgba(35,64,160,0.4));
}

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

/* 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: floaty 2.5s ease-in-out infinite alternate;
}
@keyframes floaty {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-12px) scale(1.03); }
}

/* 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: heroImageEntrance 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
             floaty 4s ease-in-out infinite alternate 1.2s,
             glow 6s ease-in-out infinite 1.2s;
}

@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-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: serif;
}

.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);
  border-top: 1px solid transparent;
}

.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: 1.5rem auto 1rem 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;
    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;
    }
} 