/* ─── WACA SECTION ─── */
.waca-section {
  padding: 62px 20px 80px;
}

.waca-container {
  max-width: 1700px;
  margin: 0 auto;
}

/* ─── HEADER ─── */
.waca-header {
  text-align: center;
  margin-bottom: 52px;
}

.waca-title {
  font-family: var(--e-global-typography-823f10e-font-family), Sans-serif;
  font-size: var(--e-global-typography-823f10e-font-size);
  font-weight: var(--e-global-typography-823f10e-font-weight);
  line-height: var(--e-global-typography-823f10e-line-height);
  word-spacing: var(--e-global-typography-823f10e-word-spacing);
  color: #013248;
  margin: 0;
}

.waca-subtitle {
  font-family: var(--e-global-typography-a4f2547-font-family), Sans-serif;
  font-size: var(--e-global-typography-a4f2547-font-size);
  font-weight: var(--e-global-typography-a4f2547-font-weight);
  color: var(--e-global-color-790a900);
  margin: 0;
}

.waca-subtitle .highlight-blue {
  color: #2B68DF;
  font-weight: bold;
}

/* ─── CARDS ROW ─── */
.waca-cards {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.waca-card {
  flex: 1;
  background: #0B1E3D;
  border-radius: 20px;
  padding: 26px 18px 22px;
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.waca-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.waca-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.waca-icon svg,
.waca-icon img {
  max-width: 28px;
  max-height: 28px;
  display: block;
}

.waca-card--1 .waca-icon { background: #2164CC; }
.waca-card--2 .waca-icon { background: #6A56C7; }
.waca-card--3 .waca-icon { background: #1C90AA; }
.waca-card--4 .waca-icon { background: #FC9C33; }
.waca-card--5 .waca-icon { background: #439645; }

.waca-card-heading {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0 0 10px;
  font-family: var(--primary-font);
  line-height: 1.2;
}

.waca-number {
  font-family: inherit;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  flex-shrink: 0;
}

.waca-card--1 .waca-number { color: #2164CC; }
.waca-card--2 .waca-number { color: #6A56C7; }
.waca-card--3 .waca-number { color: #1C90AA; }
.waca-card--4 .waca-number { color: #FC9C33; }
.waca-card--5 .waca-number { color: #439645; }

.waca-card-title {
  font-family: inherit;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}

.waca-card-desc {
  font-family: var(--primary-font);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  margin: 0 0 18px;
}

.waca-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
}

.waca-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: normal;
  line-height: 1.45;
  font-family: var(--primary-font);
}

.waca-list li .check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.waca-card--1 .check-icon { background: #2164CC; }
.waca-card--2 .check-icon { background: #6A56C7; }
.waca-card--3 .check-icon { background: #1C90AA; }
.waca-card--4 .check-icon { background: #FC9C33; }
.waca-card--5 .check-icon { background: #439645; }

.waca-list li .check-icon svg {
  width: 10px;
  height: 10px;
}

/* ─── PARTNER BANNER ─── */
.waca-partner {
  margin-top: 40px;
  background: #F2F5F9;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.waca-partner-main {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1.2;
  min-width: 0;
}

.waca-partner-icon {
  width: 90px;
  height: 85px;
  border-radius: 50%;
  background: #0B1E3D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.waca-partner-icon svg {
  width: 36px;
  height: 36px;
}

.waca-partner-text h3 {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: bold;
  color: #013248;
  line-height: 1.2;
  margin: 0 0 8px;
}

.waca-partner-text p {
  font-family: var(--primary-font);
  font-size: 13px;
  color: #013248;
  line-height: 1.45;
  margin: 0;
}

.waca-partner-features {
  display: flex;
  align-items: stretch;
  flex: 1.8;
  gap: 0;
}

.waca-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
}

.waca-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #D8E2EF;
}

.waca-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.waca-feature-icon svg {
  width: 32px;
  height: 32px;
}

.waca-feature p {
  font-family: var(--primary-font);
  font-size: 13px;
  color: #013248;
  line-height: 1.35;
  margin: 0;
}

.waca-feature p strong {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 4px;
}

/* ─── FOOTER CTA ─── */
.waca-footer {
  margin-top: 28px;
  background: #0B1E3D;
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.waca-footer-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waca-footer-icon svg {
  width: 40px;
  height: 40px;
}

.waca-footer p {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.waca-footer p .highlight-blue {
  color: #2B68DF;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1535px) {
  .waca-container {
    max-width: 1400px;
  }

  .waca-title {
    font-size: 62px;
  }

  .waca-subtitle {
    font-size: 24px;
  }

  .waca-card {
    padding: 32px 22px 28px;
  }

  .waca-card-title {
    font-size: 22px;
  }

  .waca-partner-text h3 {
    font-size: 22px;
  }

  .waca-footer p {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  .waca-title {
    font-size: 52px;
  }

  .waca-subtitle {
    font-size: 21px;
  }

  .waca-card-title {
    font-size: 20px;
  }

  .waca-cards {
    flex-wrap: wrap;
    gap: 16px;
  }

  .waca-card {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 260px;
  }
}

@media (max-width: 1024px) {
  .waca-title {
    font-size: 42px;
  }

  .waca-subtitle {
    font-size: 18px;
  }

  .waca-card {
    flex: 1 1 calc(50% - 12px);
  }

  .waca-partner {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 22px;
  }

  .waca-partner-features {
    flex-wrap: wrap;
    gap: 20px;
  }

  .waca-feature {
    flex: 1 1 calc(50% - 10px);
    padding: 0 10px;
  }

  .waca-feature:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .waca-section {
    padding: 52px 16px 60px;
  }

  .waca-title {
    font-size: 32px;
    letter-spacing: 0;
  }

  .waca-subtitle {
    font-size: 16px;
  }

  .waca-header {
    margin-bottom: 40px;
  }

  .waca-cards {
    flex-direction: column;
    gap: 16px;
  }

  .waca-card {
    flex: 1 1 100%;
    padding: 30px 20px 26px;
  }

  .waca-card-title {
    font-size: 21px;
  }

  .waca-partner-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .waca-feature {
    flex: 1 1 100%;
  }

  .waca-footer {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .waca-footer p {
    font-size: 18px;
  }
}
