/* Instant Insights Specific Styles */

/* Container */
.container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  display: flex;
  gap: 40px;
}

.hero .left-hero{
  width: 700px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero .tagline {
  font-size: 28px;
  color: var(--color50);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero .hero-description {
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--text);
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color100);
  color: var(--color50);
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 48px;
}

.beta-badge i {
  font-size: 18px;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
}

/* Problem Section */
.problem-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.problem-section h2 {
  font-size: 42px;
  margin-bottom: 32px;
  text-align: center;
}

.problem-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.problem-section .highlight {
  font-size: 20px;
  font-weight: 500;
  color: var(--color50);
  margin-top: 40px;
}

/* Comparison Section */
.comparison-section {
  padding: 80px 0;
}

.comparison-section h2 {
  font-size: 42px;
  margin-bottom: 32px;
  text-align: center;
}

.comparison-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-section .highlight {
  font-size: 20px;
  font-weight: 500;
  color: var(--color50);
  margin-top: 40px;
  text-align: center;
}

/* Differentiation Section */
.differentiation-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.differentiation-section h2 {
  font-size: 42px;
  margin-bottom: 48px;
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.comparison-item {
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow);
}

.comparison-item.highlight {
  background-color: var(--color50);
  color: white;
}

.comparison-item.highlight h3,
.comparison-item.highlight li {
  color: white;
}

.comparison-item h3 {
  font-size: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-item i {
  font-size: 28px;
  color: var(--color50);
}

.comparison-item.highlight i {
  color: white;
}

.comparison-item ul {
  list-style: none;
  padding: 0;
}

.comparison-item li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.comparison-item li::before {
  content: "•";
  position: absolute;
  left: 8px;
  font-size: 20px;
  color: var(--color50);
}

.comparison-item.highlight li::before {
  color: white;
}

.differentiation-section .conclusion {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
}

.how-it-works-section h2 {
  font-size: 42px;
  margin-bottom: 48px;
  text-align: center;
}

.steps-grid {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  position: relative;
  padding-left: 80px;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background-color: var(--color50);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text);
}

.step p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--text);
}

.step .note {
  font-style: italic;
  color: var(--text-light);
  font-size: 15px;
}

/* Tech Stack Section */
.tech-stack-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.tech-stack-section h2 {
  font-size: 42px;
  margin-bottom: 32px;
  text-align: center;
}

.tech-stack-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.tech-badge i {
  font-size: 20px;
  color: var(--color50);
}

.tech-conclusion {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 32px auto;
}

.tech-stack-section .highlight {
  font-size: 20px;
  font-weight: 500;
  color: var(--color50);
  text-align: center;
  margin-top: 32px;
}

/* Audience Section */
.audience-section {
  padding: 80px 0;
}

.audience-section h2 {
  font-size: 42px;
  margin-bottom: 32px;
  text-align: center;
}

.audience-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.audience-section .highlight {
  font-size: 20px;
  font-weight: 500;
  color: var(--color50);
  text-align: center;
  margin-top: 40px;
}

/* Status Section */
.status-section {
  padding: 80px 0;
  background-color: var(--bg-main);
}

.status-section h2 {
  font-size: 42px;
  margin-bottom: 48px;
  text-align: center;
}

.progress-indicator {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  background-color: var(--color50);
  transition: width 1s ease;
}

.progress-label {
  font-size: 20px;
  font-weight: 600;
  color: var(--color50);
}

.features-checklist {
  max-width: 700px;
  margin: 0 auto 40px;
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px 0px;
}

.feature-item i {
  font-size: 20px;
  color: var(--color50);
}

.feature-item span {
  font-size: 16px;
  line-height: 1.6;
}

.status-section p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 32px auto;
  text-align: center;
}

.launch-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: var(--color50);
  margin-top: 48px;
}

.launch-note i {
  font-size: 28px;
}

/* What's Next Section */
.whats-next-section {
  padding: 80px 0;
}

.whats-next-section h2 {
  font-size: 42px;
  margin-bottom: 32px;
  text-align: center;
}

.whats-next-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box {
  background-color: var(--bg-main);
  padding: 48px;
  border-radius: 12px;
  text-align: center;
  max-width: 800px;
  margin: 48px auto;
  box-shadow: var(--box-shadow);
}

.cta-box h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color50);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(246, 101, 23, 0.3);
}

.cta-button i {
  font-size: 18px;
  color: white;
}

.closing-note {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  margin-top: 48px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .container1 {
    padding: 0 32px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero .tagline {
    font-size: 24px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .problem-section h2,
  .comparison-section h2,
  .differentiation-section h2,
  .how-it-works-section h2,
  .tech-stack-section h2,
  .audience-section h2,
  .status-section h2,
  .whats-next-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .container1 {
    padding: 0 24px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero .tagline {
    font-size: 20px;
  }

  .hero .hero-description {
    font-size: 16px;
  }

  .beta-badge {
    font-size: 14px;
    padding: 10px 20px;
  }

  .problem-section,
  .comparison-section,
  .differentiation-section,
  .how-it-works-section,
  .tech-stack-section,
  .audience-section,
  .status-section,
  .whats-next-section {
    padding: 60px 0;
  }

  .problem-section h2,
  .comparison-section h2,
  .differentiation-section h2,
  .how-it-works-section h2,
  .tech-stack-section h2,
  .audience-section h2,
  .status-section h2,
  .whats-next-section h2 {
    font-size: 28px;
  }

  .comparison-item h3,
  .step h3,
  .cta-box h3 {
    font-size: 20px;
  }

  .step {
    padding-left: 70px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .cta-box {
    padding: 32px 24px;
  }

  .tech-badges {
    gap: 12px;
  }

  .tech-badge {
    font-size: 14px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero .tagline {
    font-size: 18px;
  }

  .problem-section h2,
  .comparison-section h2,
  .differentiation-section h2,
  .how-it-works-section h2,
  .tech-stack-section h2,
  .audience-section h2,
  .status-section h2,
  .whats-next-section h2 {
    font-size: 24px;
  }

  .comparison-item {
    padding: 24px;
  }

  .step {
    padding-left: 60px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 16px;
  }

  .launch-note {
    font-size: 20px;
  }
}
