/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

body {
  /* line-height: 1.6; */
  color: #374151;
}

/* Utility classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn-primary {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #1d4ed8, #6d28d9);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid #d1d5db;
  color: #374151;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: #2563eb;
  color: #2563eb;
}

.gradient-text {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-grid-pattern {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

.logo-icon {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #2563eb;
}

.nav a.btn-primary {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a.btn-primary:hover {
  color: #ffffff;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.mobile-menu-btn:hover {
  background: #f3f4f6;
}

.mobile-nav {
  display: none;
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav.active {
  display: flex;
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #eff6ff, #ffffff, #faf5ff);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-text {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dbeafe;
  color: #1e40af;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #374151;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.chat-demo {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f3f4f6;
  overflow: hidden;
  max-width: 576px;
  margin: 0 auto;
}

.chat-header {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  padding: 1rem;
  color: white;
}

.chat-header-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-header-avatar {
  background: rgba(255, 255, 255, 0.2);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  padding: 0.5rem;
}

.chat-header-info h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.chat-header-info p {
  font-size: 0.875rem;
  color: #a7f3d0;
}

.chat-messages {
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
}

.message {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.message.sent {
  justify-content: flex-end;
}

.message-avatar {
  background: #e5e7eb;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  padding: 0.5rem;
  flex-shrink: 0;
}

.message-content {
  max-width: 90%;
}

.message-bubble {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  margin-bottom: 0.25rem;
}

.message-bubble.received {
  background: #f3f4f6;
  color: #374151;
}

.message-bubble.sent {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  color: white;
}

.message-time {
  font-size: 0.75rem;
  color: #6b7280;
}

.message-time.sent {
  display: flex;
  justify-content: end;
  font-size: 0.75rem;
  color: #6b7280;
}

.typing-indicator {
  text-align: center;
  padding: 0.5rem;
}

.typing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #d1fae5;
  color: #065f46;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.typing-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Comparison Section */
.comparison {
  background: white;
  padding: 4rem 0 6rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-badge.orange {
  background: #ffedd5;
  color: #9a3412;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}

.vs-section {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.vs-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.vs-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vs-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.vs-icon.negative {
  background: #fee2e2;
  color: #dc2626;
}

.vs-icon.positive {
  background: #d1fae5;
  color: #16a34a;
}

.vs-divider {
  font-size: 2rem;
  font-weight: 700;
  color: #d1d5db;
}

.comparison-table {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.table-header {
  background: linear-gradient(90deg, #f9fafb, #f3f4f6);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.table-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.table-content {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: #f9fafb;
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.comparison-table tr:hover {
  background: #f9fafb;
}

.feature-name {
  font-weight: 500;
  color: #111827;
}

.check-icon,
.x-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.check-icon {
  background: #d1fae5;
  color: #16a34a;
}

.x-icon {
  background: #fee2e2;
  color: #dc2626;
}

.feature-description {
  font-size: 0.875rem;
  color: #6b7280;
}

.cta-section {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: white;
  margin-top: 3rem;
}

.cta-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: white;
  color: #2563eb;
}

.cta-section .btn-primary:hover {
  background: #f3f4f6;
}

/* Benefits Section */
.benefits {
  background: linear-gradient(90deg, #f9fafb, white);
  padding: 4rem 0 6rem;
}

.section-badge.green {
  background: #d1fae5;
  color: #065f46;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.benefit-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.benefit-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  color: white !important;
}

.benefit-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.benefit-card:hover .benefit-icon.blue {
  background: #2563eb;
}

.benefit-icon.green {
  background: #d1fae5;
  color: #16a34a;
}

.benefit-card:hover .benefit-icon.green {
  background: #16a34a;
}

.benefit-icon.purple {
  background: #e9d5ff;
  color: #9333ea;
}

.benefit-card:hover .benefit-icon.purple {
  background: #9333ea;
}

.benefit-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}

.benefit-card:hover .benefit-icon.orange {
  background: #ea580c;
}

.benefit-icon.indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.benefit-card:hover .benefit-icon.indigo {
  background: #4f46e5;
}

.benefit-icon.red {
  background: #fee2e2;
  color: #dc2626;
}

.benefit-card:hover .benefit-icon.red {
  background: #dc2626;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
  color: #2563eb;
}

.benefit-description {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.benefit-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #f3f4f6;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.guarantee-section {
  background: linear-gradient(90deg, #2563eb, #9333ea, #4f46e5);
  border-radius: 1rem;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.guarantee-content {
  position: relative;
  z-index: 10;
}

.guarantee-icon {
  width: 4rem;
  height: 4rem;
  color: #fde047;
  margin: 0 auto 1rem;
}

.guarantee-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guarantee-description {
  color: #bfdbfe;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.guarantee-stat {
  text-align: center;
}

.guarantee-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fde047;
  margin-bottom: 0.5rem;
}

.guarantee-stat-label {
  color: #bfdbfe;
}

.guarantee-section .btn-primary {
  background: white;
  color: #2563eb;
}

.guarantee-section .btn-primary:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
  background: white;
  padding: 4rem 0 6rem;
}

.section-badge.yellow {
  background: #fef9c3;
  color: #854d0e;
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-stat {
  text-align: center;
}

.testimonial-stat-icon {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.testimonial-stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.testimonial-stat-label {
  color: #6b7280;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #111827;
}

.testimonial-business {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: #fde047;
  fill: currentColor;
}

.testimonial-content {
  position: relative;
  margin-bottom: 1rem;
}

.quote-icon {
  width: 2rem;
  height: 2rem;
  color: #bfdbfe;
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
}

.testimonial-text {
  color: #374151;
  font-style: italic;
  padding-left: 1.5rem;
}

.testimonial-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #d1fae5;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #065f46;
}

.testimonials-cta {
  background: linear-gradient(90deg, #f9fafb, #dbeafe);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.testimonials-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.testimonials-cta p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact {
  background: linear-gradient(90deg, #dbeafe, white);
  padding: 4rem 0 6rem;
}

.section-badge.blue {
  background: #dbeafe;
  color: #1e40af;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-benefit-icon {
  background: #dbeafe;
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: #2563eb;
  flex-shrink: 0;
}

.contact-benefit-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.contact-benefit-content p {
  color: #6b7280;
}

.offer-banner {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: white;
}

.offer-banner h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.offer-banner p {
  color: #a7f3d0;
  margin-bottom: 1rem;
}

.offer-banner .offer-spots {
  font-size: 1.5rem;
  font-weight: 700;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-methods h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
}

.contact-method-icon {
  color: #2563eb;
}

.contact-form {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #f3f4f6;
  padding: 2rem;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #6b7280;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #2563eb;
}

.form-textarea {
  resize: none;
  height: 100px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #9333ea);
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: linear-gradient(90deg, #1d4ed8, #6d28d9);
  transform: scale(1.05);
}

.form-privacy {
  margin-top: 1.5rem;
  /* text-align: center; */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.success-message {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  background: #d1fae5;
  border-radius: 9999px;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #16a34a;
}

.success-message h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.success-message p {
  color: #6b7280;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 4rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section.company {
  grid-column: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  background: linear-gradient(90deg, #2563eb, #9333ea);
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.footer-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  max-width: 24rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
}

.footer-contact-icon {
  color: #60a5fa;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #60a5fa;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  background: #374151;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #2563eb;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: row;
    /* justify-content: center; */
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .vs-content {
    grid-template-columns: 1fr auto 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-content {
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .vs-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vs-divider {
    display: none;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-section.company {
    grid-column: span 1;
  }
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
