/* helloRun.css – updated with icon styles */

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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  line-height: 1.5;
  background-color: #ffffff;
}

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

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.highlight {
  color: #fa9a4b;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: #e8873a;
  color: #fff;
  border: 2px solid #e8873a;
}

.btn-primary:hover {
  background-color: #d4792e;
  border-color: #d4792e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(232, 135, 58, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: #1e293b;
  border-color: #1e293b;
}

.btn-outline:hover {
  background-color: #1e293b;
  color: #fff;
}

.btn-large {
  padding: 1rem 3rem;
  font-size: 1.2rem;
}

.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 400px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Updated stats with icons */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-icon {
  font-size: 2.5rem;
  color: #fa9a4b;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #1e293b;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.hero-visual {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
}

.visual-placeholder {
  background-color: #e2e8f0;
  width: 100%;
  max-width: 400px;
  height: 300px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.hero-logo {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 16px;
}

.visual-placeholder i {
  font-size: 6rem;
  color: #fa9a4b;
  opacity: 0.8;
}

.features {
  padding: 5rem 0;
  background-color: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.2s ease;
  border: 1px solid #e2e8f0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1);
}

.feature-icon {
  background-color: #fa9a4b20;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: #fa9a4b;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: #475569;
}

.how-it-works {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #eef2f6 100%);
}

.steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 200px;
  text-align: center;
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #fa9a4b;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

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

.step p {
  color: #475569;
  font-size: 0.95rem;
}

.testimonial {
  padding: 4rem 0;
  background-color: #ffffff;
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  background: #f8fafc;
  padding: 3rem;
  border-radius: 40px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.quote-icon {
  font-size: 2.5rem;
  color: #fa9a4b;
  opacity: 0.4;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.testimonial-author div {
  text-align: left;
}

.testimonial-author strong {
  display: block;
  color: #0f172a;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #64748b;
}

.cta-section {
  padding: 5rem 0;
  background-color: #fa9a4b;
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background-color: #1e293b;
  color: #fff;
  border-color: #1e293b;
}

.cta-section .btn-primary:hover {
  background-color: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

/* Why helloRun */
.why-hellorun {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.why-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.why-content p {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-box {
  background: linear-gradient(135deg, #fff7ed, #fff);
  border-left: 4px solid #fa9a4b;
  padding: 2rem 2.5rem;
  border-radius: 0 16px 16px 0;
  margin: 2rem 0;
  text-align: left;
}

.quote-box .quote-icon {
  color: #fa9a4b;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.quote-box p {
  font-size: 1.2rem;
  color: #1e293b;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Audience Section */
.audience {
  padding: 5rem 0;
  background-color: #ffffff;
}

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

.audience-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.audience-icon {
  margin-bottom: 1rem;
}

.audience-icon i {
  font-size: 2.5rem;
  color: #fa9a4b;
}

.audience-card h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.audience-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;
}

.audience-card ul li {
  padding: 0.4rem 0;
  color: #475569;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.audience-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #fa9a4b;
  font-weight: 700;
}

.audience-card .btn {
  width: 100%;
  max-width: 220px;
}

/* CTA Tagline */
.cta-tagline {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fa9a4b;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 1.2rem;
  }

  .stat-item {
    min-width: 90px;
  }

  .stat-icon {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .hero-buttons .btn {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .visual-placeholder {
    max-width: 280px;
    height: 220px;
    border-radius: 20px;
  }

  .hero-logo {
    border-radius: 12px;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .features {
    padding: 3rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .how-it-works {
    padding: 3rem 0;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .step {
    width: 100%;
    max-width: 400px;
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .testimonial {
    padding: 2.5rem 0;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 24px;
  }

  .testimonial-text {
    font-size: 1.05rem;
  }

  .quote-icon {
    font-size: 1.8rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-section .btn-large {
    width: 100%;
    max-width: 320px;
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

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

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 0.75rem;
  }

  .stat-item {
    min-width: 80px;
  }

  .stat-icon {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  .visual-placeholder {
    max-width: 220px;
    height: 180px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 0.5rem;
  }

  .testimonial-author div {
    text-align: center;
  }
}