/* Home Page Styles */
/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  margin-bottom: 50px;
  color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95em;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Quick Access Tools */
.quick-tools {
  margin-bottom: 100px;
}

.section-title {
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.section-description {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.quick-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.quick-tool-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #764ba2;
}

.quick-tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.tool-icon {
  font-size: 2em;
  display: block;
}

.tool-name {
  color: #333;
  font-weight: 600;
  font-size: 0.95em;
}

/* Tools Sections */
.tools-section {
  margin-bottom: 60px;
  padding: 40px 0;
}

.tools-section.alternate-bg {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 20px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.tool-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.tool-card h3 {
  color: #333;
  margin-bottom: 12px;
  font-size: 1.2em;
  font-weight: 600;
}

.tool-card p {
  color: #666;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 15px;
}

.tool-link {
  color: #667eea;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.tool-card:hover .tool-link {
  color: #764ba2;
}

.tool-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
}

.tool-card.featured h3,
.tool-card.featured p,
.tool-card.featured .tool-link {
  color: white;
}

.tool-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 20px;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 0 20px;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.feature-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cta-section h2 {
  font-size: 2.2em;
  color: #333;
  margin-bottom: 15px;
}

.cta-section p {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button.secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.cta-button.secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-3px);
}

/* Icons in h2 headings (section-title) */
.section-title i {
  color: var(--brand-primary);
}

/* Icons in feature-icon */
.feature-icon i {
  color: var(--brand-primary);
}

/* What is TextWhale - Quality Content Section */
.content-home-section {
  margin-bottom: 100px;
}

.content-home-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.content-home-section .section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.content-home-section-intro {
  text-align: center;
  color: #5a6c7d;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Main Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card-icon.blue {
  color: #4a90e2;
}

.benefit-card-icon.red {
  color: #e74c3c;
}

.benefit-card-icon.green {
  color: #27ae60;
}

.benefit-card-icon.orange {
  color: #f39c12;
}

.benefit-card-icon.purple {
  color: #9b59b6;
}

.benefit-card-icon.teal {
  color: #16a085;
}

.benefit-card h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: #5a6c7d;
  line-height: 1.7;
  margin: 0;
}

/* Who Uses TextWhale Section */
.who-uses-box {
  background: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.who-uses-box h3 {
  color: #2c3e50;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.who-uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: center;
}

.who-uses-item {
  transition: transform 0.3s;
}

.who-uses-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.who-uses-icon.blue {
  color: #4a90e2;
}

.who-uses-icon.red {
  color: #e74c3c;
}

.who-uses-icon.purple {
  color: #9b59b6;
}

.who-uses-icon.orange {
  color: #f39c12;
}

.who-uses-icon.green {
  color: #27ae60;
}

.who-uses-icon.teal {
  color: #16a085;
}

.who-uses-item strong {
  color: #2c3e50;
  font-size: 1.1rem;
  display: block;
}

.who-uses-item p {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* Trusted by Thousands Section */
.trusted-section {
  margin-top: 3rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  color: white;
  text-align: center;
}

.trusted-section h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.trusted-intro {
  opacity: 0.95;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem 1rem;
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.testimonial-card {
  background: white;
  color: #2c3e50;
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.testimonial-stars {
  color: #f39c12;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-info strong {
  display: block;
  color: #2c3e50;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.author-info span {
  display: block;
  color: #7f8c8d;
  font-size: 0.85rem;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.95;
  transition: transform 0.3s;
}

.badge-item i {
  font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-home-section {
    padding: 3rem 0rem;
  }
  .benefits-grid,
  .who-uses-grid,
  .stats-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .benefit-card,
  .who-uses-box,
  .trusted-section {
    padding: 1.5rem;
  }
  .trust-badges {
    gap: 1rem;
  }
  .badge-item {
    font-size: 0.9rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 1.8em;
  }
  .hero-subtitle {
    font-size: 1em;
  }
  .hero-stats {
    gap: 30px;
  }
  .stat-number {
    font-size: 2em;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .quick-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-button {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .hero-section {
    padding: 40px 15px;
  }
  .quick-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .quick-tool-card {
    padding: 20px 10px;
  }
  .tool-icon {
    font-size: 1.5em;
  }
  .tool-name {
    font-size: 0.85em;
  }
}/*# sourceMappingURL=home.css.map */