/* ================= CUSTOM CONTAINER ================= */
.custom-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= PAGE HEADER ================= */
.page-header {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #667eea 0%, #6f42c1 60%, #5a32a3 100%);
  color: #fff;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.page-header h1 i {
  margin-right: 10px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
}

/* ================= FEATURES SECTION ================= */
.features-section {
  padding: 70px 20px;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(111, 66, 193, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1.5px solid #ece8f8;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(111, 66, 193, 0.18);
}

.feature-icon {
  font-size: 44px;
  margin-bottom: 18px;
  display: block;
}

.feature-icon i {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.65;
}

/* ================= COMPARISON SECTION ================= */
.comparison-section {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}

.comparison-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 35px;
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(111, 66, 193, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border: 1px solid #ece8f8;
  font-size: 15px;
}

.comparison-table th {
  background: linear-gradient(135deg, #667eea, #6f42c1);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f9f7ff;
}

.comparison-table tbody tr:hover {
  background: #ede8fb;
}

.comparison-table td {
  color: #444;
}

.comparison-table td i.fa-check {
  color: #6f42c1;
  font-size: 18px;
}

.comparison-table td i.fa-times {
  color: #ccc;
  font-size: 18px;
}

/* ================= CTA SECTION ================= */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--bg);
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* ================= GENERATOR BUTTON ================= */
#generatorBtn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff !important;
  padding: 14px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

#generatorBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  color: #fff;
  text-decoration: none;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .page-header h1 {
    font-size: 28px;
  }

  .page-header p {
    font-size: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
