/* =========================================================
   WHY-US.CSS
   WHY US PAGE STYLES

   Breadcrumb
   Hero
   Stats
   Advantage Cards
   Certificate Section
   Collection Value
   CTA
========================================================= */

.why-divider {
  height: 58px;
  background: var(--purple-dark);
}

.why-breadcrumb {
  padding: 28px 0 0;
}

.why-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.why-breadcrumb a {
  color: var(--purple-dark);
  font-weight: 700;
}

/* HERO */

.why-hero {
  padding: 42px 0 36px;
}

.why-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 38px;
  align-items: center;
  padding: clamp(26px, 4vw, 52px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 6% 8%, rgba(255,107,107,.13), transparent 320px),
    radial-gradient(circle at 92% 8%, rgba(121,74,250,.14), transparent 360px),
    rgba(255,255,255,.76);
  border: 1px solid rgba(229,232,236,.88);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
}

.why-hero-card::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -150px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(121,74,250,.08);
  z-index: -1;
}

.why-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(121,74,250,.11);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.why-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--primary),var(--purple));
  box-shadow: 0 0 0 7px rgba(255,107,107,.10);
}

.why-hero h1 {
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -.06em;
  font-weight: 900;
  max-width: 860px;
}

.why-hero p {
  margin-top: 20px;
  max-width: 720px;
  color: #493f5f;
  font-size: clamp(15px,1.25vw,18px);
  line-height: 1.75;
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* HERO VISUAL */

.why-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 34px;
  background: linear-gradient(135deg,#f7f4ef,#fff);
  box-shadow: var(--shadow-md);
}

.why-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

.why-floating-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg,rgba(10,2,28,.86),rgba(69,60,92,.76));
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(10,2,28,.20);
  border: 1px solid rgba(255,255,255,.10);
}

.why-floating-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.why-floating-card span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.45;
}

/* STATS */

.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.why-stats div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(229,232,236,.88);
  box-shadow: 0 12px 30px rgba(10,2,28,.04);
}

.why-stats strong {
  display: block;
  color: var(--ink);
  font-size: clamp(26px,2.8vw,40px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 900;
}

.why-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* CARDS */

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  position: relative;
  min-height: 280px;
  padding: 28px 24px;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(229,232,236,.88);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: .28s var(--ease);
}

.why-card::before {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(121,74,250,.08);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-card i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg,var(--purple),var(--primary));
  font-size: 28px;
  margin-bottom: 20px;
}

.why-card h3 {
  position: relative;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.why-card p {
  position: relative;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

/* CERTIFICATE */

.certificate-box {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 42px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0, rgba(255,255,255,.16), transparent 360px),
    linear-gradient(135deg,var(--ink),var(--purple-dark));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.certificate-content h2 {
  margin-top: 8px;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 900;
}

.certificate-content p:last-child {
  margin-top: 16px;
  max-width: 720px;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  line-height: 1.8;
}

.certificate-list {
  display: grid;
  gap: 14px;
}

.certificate-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.certificate-list i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg,var(--primary),var(--purple));
  font-size: 23px;
}

.certificate-list span {
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

/* COLLECTION VALUE */

.collection-value-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.collection-value-media {
  overflow: hidden;
  border-radius: 36px;
  background: linear-gradient(135deg,#f7f4ef,#fff);
  box-shadow: var(--shadow-md);
}

.collection-value-media img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

.collection-value-content {
  padding: clamp(26px, 4vw, 46px);
  border-radius: 36px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(229,232,236,.88);
  box-shadow: var(--shadow-sm);
}

.collection-value-content h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 900;
}

.collection-value-content p {
  margin-top: 16px;
  color: #4d435f;
  font-size: 15px;
  line-height: 1.8;
}

.collection-value-content ul {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.collection-value-content li {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(121,74,250,.07);
  color: #4d435f;
  font-size: 14px;
  line-height: 1.65;
}

.collection-value-content strong {
  color: var(--ink);
}

/* CTA */

.why-cta {
  padding: 0 0 80px;
}

.why-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 0, rgba(255,255,255,.16), transparent 360px),
    linear-gradient(135deg,var(--ink),var(--purple-dark));
  box-shadow: var(--shadow-md);
}

.why-cta-card h2 {
  font-size: clamp(28px,3.5vw,50px);
  line-height: 1.05;
  letter-spacing: -.055em;
  max-width: 800px;
}

.why-cta-card p {
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  max-width: 720px;
}

.why-cta-card .btn {
  flex: 0 0 auto;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .why-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certificate-box,
  .collection-value-grid {
    grid-template-columns: 1fr;
  }

  .collection-value-media img {
    height: 460px;
  }
}

@media (max-width: 980px) {
  .why-hero-card {
    grid-template-columns: 1fr;
  }

  .why-hero-visual,
  .why-hero-visual img {
    min-height: 420px;
  }

  .why-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .why-divider {
    height: 44px;
  }

  .why-breadcrumb {
    padding-top: 18px;
  }

  .why-hero {
    padding: 24px 0 30px;
  }

  .why-hero-card {
    padding: 20px;
    border-radius: 26px;
    gap: 24px;
  }

  .why-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .why-hero p {
    font-size: 14px;
    line-height: 1.65;
  }

  .why-actions {
    flex-direction: column;
  }

  .why-actions .btn {
    width: 100%;
  }

  .why-hero-visual {
    border-radius: 24px;
  }

  .why-hero-visual,
  .why-hero-visual img {
    min-height: 320px;
  }

  .why-floating-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .why-floating-card strong {
    font-size: 17px;
  }

  .why-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .why-stats div {
    padding: 14px;
    border-radius: 18px;
  }

  .why-stats strong {
    font-size: 24px;
  }

  .why-stats span {
    font-size: 11px;
    line-height: 1.45;
  }

  .why-card-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .certificate-box {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .certificate-content h2,
  .collection-value-content h2 {
    font-size: 31px;
  }

  .certificate-list div {
    padding: 14px;
    border-radius: 18px;
  }

  .collection-value-media {
    border-radius: 24px;
  }

  .collection-value-media img {
    height: 320px;
  }

  .collection-value-content {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .why-cta {
    padding-bottom: 54px;
  }

  .why-cta-card {
    padding: 24px;
    border-radius: 26px;
  }

  .why-cta-card .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {

    .why-hero-card {
        padding: 20px;
        border-radius: 26px;
    }

    .why-card-grid {
        grid-template-columns: 1fr;
    }

    .why-actions .btn {
        width: 100%;
    }
}