:root {
  --primary-color: #2563EB;
  --text-primary: #1F2937;
  --text-secondary: #4B5563;
  --background-light: #F3F7FF;
  --white: #FFFFFF;
  --primary-gradient: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  --card-gradient: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
  --step-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--background-light);
  color: var(--text-primary);
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 2222200;
  background: #F3F7FF;
  /* border-bottom: 1px solid #e2e8f0; */
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-left {
  flex: 1;
}

.navbar-center {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto; /* This centers the navigation items */
}

.navbar-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 1.25rem;
}

.nav-link {
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link.login {
  color: #64748b;
}

.button.primary {
  background: #2563eb;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s;
}

.button.primary:hover {
  background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-center {
    display: none; /* Hide center navigation on mobile */
  }
  
  .navbar-container {
    justify-content: space-between;
  }
  
  .navbar-right {
    flex: 0;
  }
}

/* Hero Styles */
.hero {
  position: relative;
  padding: 5rem 2rem;
  text-align: center;
  min-height: calc(100vh - 72px);
  background: linear-gradient(180deg, var(--background-light) 0%, #FFFFFF 100%);
  overflow: hidden;
}

/* Add fade overlay */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px; /* Adjust height of fade as needed */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none; /* Ensures the overlay doesn't interfere with clicks */
  z-index: 1;
}

/* Ensure content stays above the fade */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-interface-preview {
  position: relative;
  z-index: 2;
}

.announcement-bar {
  background: var(--white);
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.new {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 24px;
  font-weight: 700;
  text-align: center;
}

.hero-title .highlight {
  background: #cee5ff;
  padding: 0 16px;
  border-radius: 8px;
  color: #2563eb;
  display: inline-block;
  transform: rotate(-1deg);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.button.google-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1e293b;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.button.google-auth:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

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

.button.secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #475569;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.button.secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .navbar-center {
    display: none;
  }
  
  .search-box {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .button.google-auth,
  .button.secondary {
    width: 100%;
    justify-content: center;
  }
  
  .navbar {
    padding: 1rem;
  }
  
  .navbar-right {
    gap: 0.5rem;
  }
  
  .nav-link.login {
    padding: 0.5rem;
  }
  
  .hero {
    padding: 2rem 1rem;
    background-position: 70% center;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Fix navbar right section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link.login {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.75rem 1rem;
}

/* Ensure buttons don't collapse */
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Add hero background */
.hero {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--background-light) 0%, #040404 100%);
  background-image: url('./assets/clouds.svg'), url('./assets/checks-bg.avif');
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, top;
  min-height: calc(100vh - 72px); /* Subtract navbar height */
}

/* Ensure hero content stays above background */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .navbar-right {
    gap: 0.5rem;
  }
  
  .nav-link.login {
    padding: 0.5rem;
  }
  
  .hero {
    padding: 2rem 1rem;
    background-position: 70% center;
  }
}

/* Interface Preview Styles */
.hero-interface-preview {
  margin-top: 6.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.interface-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

.interface-header {
  background: #f8f9fa;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.action-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
}

.action-dot:nth-child(1) { background: #ff5f57; }
.action-dot:nth-child(2) { background: #febc2e; }
.action-dot:nth-child(3) { background: #28c840; }

.interface-content {
  display: grid;
  grid-template-columns: 250px 1fr 300px;
  height: 600px;
}

.sidebar {
  background: #f8f9fa;
  border-right: 1px solid rgba(0,0,0,0.1);
  padding: 1rem;
}

.inbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
}

.inbox-item.active {
  background: var(--primary-color);
  color: white;
}

.chat-area {
  display: flex;
  flex-direction: column;
}

.chat-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  background: white;
  cursor: pointer;
}

.user-panel {
  background: white;
  border-left: 1px solid rgba(0,0,0,0.1);
  padding: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .interface-content {
    grid-template-columns: 200px 1fr;
  }
  
  .user-panel {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-interface-preview {
    padding: 0 1rem;
    margin-top: 2rem;
  }
  
  .interface-content {
    grid-template-columns: 1fr;
    height: 500px;
  }
  
  .sidebar {
    display: none;
  }
}

/* Video Thumbnail Styles */
.hero-interface-preview {
  margin-top: 7.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: transform 0.2s;
  aspect-ratio: 19 / 9;
}

.thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.video-thumbnail:hover {
  transform: translateY(-4px);
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-interface-preview {
    padding: 0 1rem;
    margin-top: 2rem;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1120px;
  margin: auto;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: -40px;
  color: white;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}

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

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
  }
  
  .modal-close {
    top: -50px;
    right: 0;
  }
}

/* How it Works Section Styles */
.how-it-works {
  padding: 6rem 2rem 3rem 2rem;
  background: linear-gradient(180deg, var(--background-light) 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.title-underline {
  position: absolute;
  bottom: -10px;
  left: -10px;
  right: -10px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='12' viewBox='0 0 200 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 9C47.6667 4.33333 146.4 -2.8 197 9' stroke='%232563EB' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: contain;
  opacity: 0.3;
  z-index: -1;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  position: relative;
}

.step-card {
  background: var(--card-gradient);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--step-shadow);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.step-label {
  background: var(--primary-gradient);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

/* .step-content {
  margin-bottom: 1.5rem;
} */

.input-preview, .message-preview, .progress-preview, .success-preview {
  background: rgba(37, 99, 235, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.message-preview {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.avatar img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.progress-bar {
  background: rgba(37, 99, 235, 0.1);
  height: 10px;
  border-radius: 100px;
  overflow: hidden;
}

.progress {
  background: var(--primary-gradient);
  height: 100%;
  border-radius: 100px;
  transition: width 0.3s ease;
}

.success-preview {
  text-align: center;
}

.check-circle {
  width: 56px;
  height: 56px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin: 0 auto 1rem;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  color: #2563EB;
  opacity: 0.5;
  z-index: 1;
}

/* Hide arrows on mobile */
@media (max-width: 1024px) {
  .step-arrow {
    display: none;
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .step-card {
    padding: 2rem;
  }
}

/* Comparison Section Styles */
.comparison {
  padding: 8rem 2rem;
  background: white;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 4rem 0;
  max-width: 1200px;
  margin: 4rem auto;
}

.comparison-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: white;
}

.comparison-card.automated {
  background: #F3F7FF;
  border: 1px solid rgba(37, 99, 235, 0.1);
  color: #1F2937;
}

.comparison-card.manual {
  background: #F9FAFB;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.task {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
}

.check {
  width: 24px;
  height: 24px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
}

.cross {
  width: 24px;
  height: 24px;
  background: rgba(239,68,68,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EF4444;
}

.time {
  color: #10B981;
  font-weight: 500;
}

.time.negative {
  color: #EF4444;
}

.total {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.2rem;
}

.manual .total {
  border-top-color: rgba(0,0,0,0.05);
}

.highlight {
  color: #2563EB;
  font-weight: 600;
}

.comparison-summary {
  text-align: center;
  max-width: 800px;
  margin: 4rem auto 0;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.comparison-summary .highlight {
  background: #F3F7FF;
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .comparison {
    padding: 6rem 1.5rem;
  }
  
  .comparison-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-card {
    padding: 2rem;
  }
  
  .comparison-summary {
    font-size: 1.25rem;
    padding: 0 1rem;
  }
  
  .task {
    font-size: 1rem;
  }
}

/* Platforms Section Styles */
.platforms {
  padding: 4rem 0;
}

.platforms .container {
  width: 40%;  /* Increased from default */
  margin: 0 auto;
}

.platforms-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: #1f2937;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.2s;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.platform-icon img {
  width: 64px;  /* Increased icon size */
  height: 64px;  /* Increased icon size */
  margin-bottom: 1rem;
}

.platform-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: #374151;
}

/* Update existing mobile responsive styles */
@media (max-width: 640px) {
  .platforms .container {
    width: 90%;
  }
  
  .platforms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pricing {
  padding: 6rem 0;
  background: #f8fafc;
}

.pricing .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  width: 100%;
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #e2e8f0;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  background: #374151;
  color: white;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #2463EB;
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.plan-label {
  color: #6b7280;
  font-size: 0.875rem;
}

.popular .plan-label {
  color: #e5e7eb;
}

.plan-name {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.plan-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.popular .plan-description {
  color: #e5e7eb;
}

.price {
  margin: 1.5rem 0;
}

.price .amount {
  font-size: 3rem;
  font-weight: 700;
}

.price .period {
  color: #6b7280;
}

.popular .price .period {
  color: #e5e7eb;
}

.features h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.check, .cross {
  margin-right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.check {
  color: #10b981;
}

.popular .check {
  color: #34d399;
}

.cross {
  color: #ef4444;
}

.excluded {
  color: #9ca3af;
}

.popular .excluded {
  color: #6b7280;
}

.pricing-card .button {
  width: 100%;
  margin-top: 1.5rem;
}

.popular .button {
  background: white;
  color: #374151;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

.pricing-alt {
  padding: 6rem 0;
  background: #fff;
}

.pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.pricing-header .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: #64748b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.pricing-card.featured {
  background: #f8fafc;
  border: 2px solid #2563eb;
}

.money-back {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.plan-header {
  text-align: left;
  margin-bottom: 2rem;
}

.tier {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.featured .tier {
  color: #2563eb;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  display: inline-block;
}

.period {
  color: #64748b;
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.features .check {
  color: #2563eb;
  font-weight: bold;
}

.cta-button {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  background: #f8fafc;
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.cta-button:hover {
  background: #f1f5f9;
}

.cta-button.featured {
  background: #2563eb;
  color: white;
  border: none;
}

.cta-button.featured:hover {
  background: #1d4ed8;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card {
    margin-bottom: 2rem;
  }
}

.emoji-container {
  position: absolute;
  width: 300px;
  height: 100vh;
  pointer-events: none;
}

.emoji-container.left {
  left: 0;
  top: 0;
  transform: none;
}

.emoji-container.right {
  right: 0;
  top: 0;
  transform: none;
}

.floating-emoji {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0;
  animation: floatEmoji 15s;
}

/* Position emojis randomly within containers */
.emoji-container.left .floating-emoji:nth-child(1) { left: 20%; top: 15%; animation-delay: 0s; }
.emoji-container.left .floating-emoji:nth-child(2) { left: 60%; top: 35%; animation-delay: 4s; }
.emoji-container.left .floating-emoji:nth-child(3) { left: 30%; top: 55%; animation-delay: 8s; }
.emoji-container.left .floating-emoji:nth-child(4) { left: 70%; top: 75%; animation-delay: 12s; }
.emoji-container.left .floating-emoji:nth-child(5) { left: 40%; top: 85%; animation-delay: 16s; }

.emoji-container.right .floating-emoji:nth-child(1) { right: 20%; top: 20%; animation-delay: 2s; }
.emoji-container.right .floating-emoji:nth-child(2) { right: 50%; top: 40%; animation-delay: 6s; }
.emoji-container.right .floating-emoji:nth-child(3) { right: 30%; top: 60%; animation-delay: 10s; }
.emoji-container.right .floating-emoji:nth-child(4) { right: 60%; top: 80%; animation-delay: 14s; }
.emoji-container.right .floating-emoji:nth-child(5) { right: 40%; top: 90%; animation-delay: 18s; }

@keyframes floatEmoji {
  0% {
    transform: translateY(100vh) rotate(5deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) rotate(-5deg);
    opacity: 0;
  }
}

/* Add subtle glow effect */
.floating-emoji {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Make containers responsive */
@media (max-width: 768px) {
  .emoji-container {
    width: 100px;
    height: 300px;
  }
  
  .floating-emoji {
    font-size: 1.8rem;
  }
}

.key-features {
  padding: 80px 0;
  background: #f8fafc;
}

.key-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.key-features .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
              0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.icon-wrapper {
  background: #f0f9ff;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  color: #0284c7;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .key-features .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 24px;
  }
}

.pre-launch-banner {
  background: white;
  border-radius: 100px;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pre-launch-banner .dot {
  color: #10B981; /* Green color for the dot */
  font-size: 20px;
}

.pre-launch-banner .offer {
  font-weight: 500;
  color: #374151;
}

.pre-launch-banner .text {
  color: #6B7280;
}

.pre-launch-banner .arrow {
  color: #6B7280;
}

/* Make it responsive */
@media (max-width: 640px) {
  .pre-launch-banner {
    font-size: 14px;
    padding: 6px 16px;
  }
}

.footer {
  background: #1e293b;
  padding: 78px 0;
  color: #f8fafc;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f8fafc;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-title {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #f8fafc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}

/* Privacy Policy Page Styles */
.policy-page {
  background: #f8fafc;
}

.policy-header {
  background: white;
  padding: 64px 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 48px;
}

.policy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
}

.policy-content {
  padding-bottom: 64px;
}

.policy-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.info-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  transition: transform 0.2s;
}

.info-card:hover {
  transform: translateY(-2px);
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f0f9ff;
  border-radius: 12px;
  color: #2563eb;
  font-size: 24px;
}

.info-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.info-content p {
  color: #64748b;
  line-height: 1.5;
}

.policy-list {
  list-style: none;
  padding: 0;
}

.policy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #1e293b;
}

.policy-list i {
  color: #2563eb;
  font-size: 20px;
}

.security-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.security-box i {
  font-size: 32px;
  color: #10b981;
}

.security-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.security-content p {
  color: #64748b;
}

.contact-box {
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 16px;
  transition: background 0.2s;
}

.contact-button:hover {
  background: #1d4ed8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .policy-header {
    padding: 48px 0;
  }
  
  .policy-title {
    font-size: 2rem;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .info-icon {
    margin: 0 auto;
  }
  
  .security-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* Terms and Conditions Page Styles */
.terms-page {
  background: #f8fafc;
}

.terms-header {
  background: white;
  padding: 64px 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 48px;
}

.terms-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  text-align: center;
}

.terms-content {
  padding-bottom: 64px;
}

.terms-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.terms-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 32px 0 16px;
}

.terms-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.terms-content a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

.terms-content a:hover {
  color: #1d4ed8;
}

.terms-content ul, 
.terms-content ol {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 24px;
}

.terms-content li {
  margin-bottom: 8px;
}

.terms-content strong {
  color: #1e293b;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .terms-header {
    padding: 48px 0;
  }
  
  .terms-title {
    font-size: 2rem;
  }
  
  .terms-content .container {
    padding: 0 16px;
  }
  
  .terms-content h3 {
    font-size: 1.25rem;
  }
}

/* Refund Policy Page Styles */
.refund-page {
  background: #f8fafc;
}

.refund-header {
  background: white;
  padding: 64px 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 48px;
}

.refund-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  text-align: center;
}

.refund-content {
  padding-bottom: 64px;
}

.refund-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.refund-section {
  margin-bottom: 40px;
}

.refund-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 32px 0 16px;
}

.refund-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.refund-content a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

.refund-content a:hover {
  color: #1d4ed8;
}

.refund-content ul,
.refund-content ol {
  color: #64748b;
  line-height: 1.6;
  margin: 16px 0;
  padding-left: 24px;
}

.refund-content li {
  margin-bottom: 12px;
}

.refund-content strong {
  color: #1e293b;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .refund-header {
    padding: 48px 0;
  }
  
  .refund-title {
    font-size: 2rem;
  }
  
  .refund-content .container {
    padding: 0 16px;
  }
  
  .refund-section h2 {
    font-size: 1.25rem;
  }
}

/* Social Proof Styles */
.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px auto;
  max-width: 500px;
}

.testimonial-bubble {
  background: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-avatars {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar:first-child {
  margin-left: 0;
}

.testimonial-avatar.more {
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  .social-proof {
    flex-direction: column;
    gap: 12px;
    margin: 24px auto;
  }

  .testimonial-bubble {
    font-size: 0.875rem;
    padding: 8px 16px;
  }

  .testimonial-avatar {
    width: 32px;
    height: 32px;
  }
}

/* Metrics Proof Section */
.metrics-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin: 48px auto;
  max-width: 1200px;
  padding: 0 24px;
}

.metric {
  text-align: left;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4763E4;
  line-height: 1.2;
}

.metric-label {
  color: #64748B;
  font-size: 1.1rem;
  max-width: 200px;
}

.metric-label.with-dot {
  display: flex;
  align-items: center;
  gap: 8px;
}

.green-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
}

.founders-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.founder-avatars {
  display: flex;
  align-items: center;
}

.founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.founder-avatar:first-child {
  margin-left: 0;
}

.founder-text {
  font-size: 1.1rem;
  color: #64748B;
  text-align: center;
  line-height: 1.4;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .metrics-proof {
    flex-direction: column;
    gap: 32px;
    margin: 32px auto;
    text-align: center;
  }

  .metric {
    text-align: center;
  }

  .metric-label.with-dot {
    justify-content: center;
  }

  .metric-number {
    font-size: 2rem;
  }

  .metric-label {
    font-size: 1rem;
  }

  .founder-avatar {
    width: 40px;
    height: 40px;
  }
}

/* Floating Graphics */
.floating-graphics {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.left-graphics, .right-graphics {
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
}

.left-graphics {
  left: 0;
}

.right-graphics {
  right: 0;
}

.floating-icon {
  position: absolute;
  width: 12rem;
  height: 12rem;
  opacity: 1;
  animation: float 6s infinite;
}

/* Left side icons */
.pencil {
  left: 15%;
  top: 30%;
  animation-delay: 0s;
}

.doc {
  left: 25%;
  top: 5%;
  animation-delay: 1s;
}

.rocket {
  left: 10%;
  top: 1%;
  animation-delay: 2s;
}

.chat {
  left: 20%;
  top: 80%;
  animation-delay: 3s;
}

/* Right side icons */
.bulb {
  right: 20%;
  top: 15%;
  animation-delay: 2s;
}

.target {
  right: 15%;
  top: 40%;
  animation-delay: 0s;
}

.profile {
  right: 25%;
  top: 60%;
  animation-delay: 3s;
}

.chart {
  right: 10%;
  top: 75%;
  animation-delay: 1s;
}

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

/* Hide on mobile */
@media (max-width: 768px) {
  .floating-graphics {
    display: none;
  }
}
