/* ================= ABOUT USP – INTRO SECTION ================= */

.about-usp-intro {
  padding: 100px 22px;
  background: #ffffff;
}

.about-usp-container {
  max-width: 980px;
  margin: auto;
  text-align: center;
}

.about-usp-container h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.about-usp-container p {
  font-size: 18px;
  color: #5f6f73;
  line-height: 1.8;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .about-usp-container h2 {
    font-size: 30px;
  }

  .about-usp-container p {
    font-size: 16px;
  }
}

/* ================= ABOUT USP – POINTS SECTION ================= */

.about-usp-points {
  padding: 90px 22px;
  background: #f8fffd;
}

.about-usp-points-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.about-usp-points-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.usp-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}

.usp-point {
  background: #ffffff;
  padding: 38px 32px;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  text-align: left;
}

.usp-point:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.12);
}

.usp-point h3 {
  font-size: 21px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.usp-point p {
  font-size: 16px;
  color: #6a7a7e;
  line-height: 1.7;
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .usp-points-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= ABOUT TRUST / EXPERIENCE NUMBERS ================= */

.about-trust-section {
  padding: 90px 22px;
  background: #ffffff;
}

.about-trust-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.about-trust-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.about-trust-container p {
  font-size: 17px;
  color: #5f6f73;
  margin-bottom: 60px;
  line-height: 1.7;
}

.trust-numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-number {
  background: #f8fffd;
  padding: 45px 20px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.trust-number h3 {
  font-size: 36px;
  color: var(--brand);
  margin-bottom: 10px;
}

.trust-number p {
  font-size: 16px;
  color: #5f6f73;
  font-weight: 500;
}

/* -------- Responsive -------- */
@media (max-width: 1000px) {
  .trust-numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-numbers-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= ABOUT FOUNDER / COMPANY STORY ================= */

.about-founder-section {
  padding: 90px 22px;
  background: #f7fffd;
}

.about-founder-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.founder-content {
  flex: 1;
  min-width: 300px;
}

.founder-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.founder-content p {
  font-size: 17px;
  color: #5f6f73;
  line-height: 1.8;
  margin-bottom: 18px;
}

.founder-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.founder-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .about-founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image img {
    max-width: 300px;
  }
}

/* ================= ABOUT STORY (NO IMAGE) ================= */

.about-founder-section {
  padding: 90px 22px;
  background: #f7fffd;
}

.about-founder-container {
  max-width: 900px;
  margin: auto;
}

.founder-content.full-width {
  text-align: center;
}

.founder-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.founder-content p {
  font-size: 17px;
  color: #5f6f73;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* -------- Responsive -------- */
@media (max-width: 768px) {
  .founder-content h2 {
    font-size: 30px;
  }
}
