/* ===================================
   SPLASH PAGE
   =================================== */
.splash-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  padding-top: calc(var(--header-height) + 20px);
  min-height: 100vh;
}

.hero-section {
  text-align: center;
  padding: 30px 20px 20px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  height: 70px;
  margin-bottom: 25px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 35px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.trust-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.trust-item strong {
  color: var(--text-color);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cta-button {
  background-color: var(--primary-color);
  color: var(--black);
  border: none;
  border-radius: 25px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(86, 213, 79, 0.3);
}

.cta-button.secondary {
  background-color: var(--white);
  color: var(--text-color);
  border: 2px solid var(--primary-color);
  font-weight: 600;
}

.cta-button.secondary:hover {
  border-color: var(--primary-color);
  background-color: rgba(86, 213, 79, 0.08);
  color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(86, 213, 79, 0.2);
}

.cta-button.secondary i {
  color: var(--primary-color);
  text-shadow: none;
}

.features-section {
  margin: 30px 0 30px 0;
  padding-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background-color: rgba(86, 213, 79, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--primary-color);
}

.feature-icon i {
  color: var(--primary-color);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-color);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.examples-section {
  margin: 30px 0 40px 0;
  padding-bottom: 30px;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 35px;
  text-align: center;
}

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

.example-card {
  background-color: var(--light-bg);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  border: 2px solid transparent;
  text-align: left;
}

.example-card:hover {
  background-color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(86, 213, 79, 0.15);
  transform: translateY(-3px);
}

.example-icon {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.example-text {
  font-size: 14px;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-subtitle {
    font-size: 1.35rem;
  }
  .hero-section {
    padding: 40px 40px;
  }
  .hero-logo {
    height: 80px;
    margin-bottom: 30px;
  }
  .hero-cta {
    margin-bottom: 40px;
  }
  .cta-button {
    padding: 15px 30px;
    font-size: 16px;
  }
  .features-section {
    margin: 40px 0;
  }
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  .feature-card {
    padding: 30px;
  }
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  .feature-description {
    font-size: 1rem;
  }
  .examples-section {
    margin: 40px 0;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  .examples-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .example-card {
    padding: 20px;
  }
  .example-icon {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .example-text {
    font-size: 14px;
  }
}
