/* ================= GLOBAL ================= */
.about-section {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.center {
  text-align: center;
  margin-bottom: 60px;
}

.subtitle {
  color: #64748b;
  font-size: 16px;
}

/* ================= HERO / BANNER ================= */
.about-hero {
  background: linear-gradient(
    135deg,
    #f5deb3 0%,
    #f7e7c3 45%,
    #fff3dc 100%
  );
  color: #1e293b;
  padding: 160px 0 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.6), transparent 60%);
}

.hero-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255,255,255,0.6);
}

.about-hero h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
}

.about-hero h1 span {
  background: linear-gradient(135deg, #d9bc66, #c9a94f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 18px;
  color: #334155;
}

/* ================= CARDS ================= */
.card {
  background: linear-gradient(
    135deg,
    #ffffff,
    #fdfcf8
  );
  border-radius: 22px;
  padding: 42px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow:
    0 12px 25px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all .45s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(217,188,102,0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .45s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    0 25px 55px rgba(0,0,0,0.14);
}

.card:hover::before {
  opacity: 1;
}

.card.small {
  padding: 32px;
}

.icon {
  font-size: 38px;
  margin-bottom: 14px;
}

/* ================= ALT BACKGROUND ================= */
.alt-bg {
  background: linear-gradient(
    135deg,
    #faf7f0,
    #fdf6e6
  );
}

/* ================= LIST ================= */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #334155;
}

/* ================= HIGHLIGHT / INFO BOX ================= */
.highlight,
.info-box {
  background: linear-gradient(135deg, #fefefe, #c9a94f);
  color: #1f2937;
  padding: 45px;
  border-radius: 24px;
  box-shadow:
    0 18px 40px rgba(201,169,79,0.35);
}

.highlight h3,
.info-box h3 {
  font-weight: 700;
}

/* ================= CTA ================= */
.about-cta {
  background: linear-gradient(
    135deg,
    #1e293b,
    #020617
  );
  color: #fff;
  padding: 90px 0;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #d9bc66,
    #c9a94f
  );
  color: #1e293b;
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all .35s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(217,188,102,0.5);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 130px 0 110px;
  }

  .about-hero h1 {
    font-size: 42px;
  }
}
