/* ============================================================
   GENIUS FIX — Why Us Page Styles
   File: css/why-us.css
   ============================================================ */

/* ── WHY SECTION ── */
.why-section {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-list {
  list-style: none;
  margin-top: 2rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.why-list li:last-child {
  border-bottom: none;
}
.check-circle {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
}
.check-circle svg {
  width: 14px; height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2.5;
}
.why-list h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-list p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.why-stats-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color 0.2s;
}
.why-stat:hover {
  border-color: rgba(200, 146, 42, 0.5);
}
.why-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 80px;
}
.why-stat-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.5;
}

/* ── PROCESS ── */
.process-section {
  background: var(--off-white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ps-num {
  width: 80px; height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  border: 4px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--gold);
}
.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--navy);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 16px;
  padding: 34px;
  transition: border-color 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(200, 146, 42, 0.5);
}
.t-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.t-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.97rem;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
}
.t-author {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.97rem;
}
.t-role {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.87rem;
  margin-top: 3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; }
}
