/* ================================================
   Hero Section
   ================================================ */

.solutions-section {
  background-image: url("../assets/img/solutions-hero-bg.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 150px 0 92px;
  overflow: hidden;
}

.solutions-section_wrapper {
  display: grid;
  grid-template-columns: auto 716px;
}

/* Left content column */
.solutions-section__content {
  padding-right: 40px;
}

/* Heading */
.solutions-section__heading {
  font-family: "Nobile", serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 58px;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Body paragraphs */
.solutions-section__para {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  margin-bottom: 38px;
}

.solutions-section__para,
.solutions-section__desc {
  /* max-width: 540px; */
}

.solutions-section__desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: white;
  margin-bottom: 12px;
}

.solutions-section__desc:last-of-type {
  margin-bottom: 0;
}

/* CTA wrapper */
.solutions-section__actions {
  margin-top: 32px;
}

/* Right visual column */
.solutions-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 1400px) {
  .solutions-section_wrapper {
    grid-template-columns: auto 575px;
  }
}

@media (max-width: 1200px) {
  .solutions-section_wrapper {
    grid-template-columns: auto 475px;
  }
}

@media (max-width: 991px) {
  .solutions-section {
    padding: 80px 0 74px;
    background: #1570ef;
  }

  .solutions-section_wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .solutions-section__content {
    /* max-width: 490px; */
    padding-right: 12px;
  }

  .solutions-section__heading {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .solutions-section {
    padding: 80px 0 48px;
  }

  .solutions-section__heading {
    line-height: 48px;
  }

  .solutions-section__btn {
    width: 100%;
    justify-content: center;
  }

  .solutions-section__actions {
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .solutions-section__actions {
    align-items: center;
    margin-top: 24px;
  }

  /* .solutions-section__heading,
  .solutions-section__para,
  .solutions-section__desc {
    text-align: center;
  } */

  .solutions-section__para {
    font-size: 16px;
    line-height: 24px;
  }

  .solutions-section__desc {
    font-size: 14px;
    line-height: 20px;
  }

  .our-solutions__subtitle {
    display: none;
  }

  .our-solutions__title {
    margin-bottom: 0;
  }
}

/* ================================================
   Our Solutions Section
   ================================================ */

.our-solutions {
  background-color: #fff;
  padding: 88px 0;
}

/* Section header */
.our-solutions__header {
  margin-bottom: 74px;
}

.our-solutions__title {
  margin-bottom: 12px;
  font-size: 36px;
}

.our-solutions__subtitle {
  margin-bottom: 0;
}

/* ================================================
   Category Header Cards (blue)
   ================================================ */

.our-solutions__categories {
  margin-bottom: 24px;
}

.our-solutions__cat-card {
  border-radius: 12px;
  padding: 24px 24px;
  display: flex;
  align-items: flex-start;
  min-height: 288px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  &.fundraising {
    background-image: url("../assets/img/fundraising.png");
  }

  &.strategy {
    background-image: url("../assets/img/strategy.png");
  }

  &.growth {
    background-image: url("../assets/img/growth.png");
  }
}

.our-solutions__cat-title {
  font-family: "Nobile", serif;
  font-size: 28px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* ================================================
   Content Cards (white)
   ================================================ */

.our-solutions__card {
  background-color: #EFF8FF;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 342px;
}

.our-solutions__card:hover {
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.08);
}

.our-solutions__card-title {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #101828;
  margin-bottom: 24px;
  line-height: 1.4;
}

.our-solutions__card-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #475467;
  line-height: 24px;
  flex-grow: 1;
  margin-bottom: auto;
}

.our-solutions__card-link {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #1570ef;
  text-decoration: none;
  margin-top: 24px;
  transition:
    gap 0.2s ease,
    opacity 0.2s ease;
}

.our-solutions__card-link:hover {
  opacity: 0.85;
  color: #1570ef;
}

/* Empty placeholder card */
.our-solutions__card--empty {
  background-color: #EFF8FF;
  border-color: #f2f4f7;
  pointer-events: none;
}

/* ================================================
   Responsive
   ================================================ */

@media (max-width: 991px) {
  .our-solutions {
    padding: 60px 0;
  }

  .our-solutions__title {
    font-size: 28px;
  }

  .our-solutions__card--empty {
    display: none;
  }

  .our-solutions__categories {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .our-solutions {
    padding: 48px 0 30px;
  }

  .our-solutions__header {
    margin-bottom: 32px;
  }

  .our-solutions__title {
    font-size: 24px;
  }

  .our-solutions__cat-card {
    min-height: 224px;
    padding: 16px;
    background-size: 100% 100%;
  }

  .our-solutions__card {
    min-height: auto;
  }

  .our-solutions__cat-title {
    font-size: 20px;
    line-height: normal;
  }
}

@media (max-width: 576px) {
  .our-solutions__cat-card {
    padding: 18px;
  }

  .our-solutions__card-link {
    margin-top: 38px;
  }
}

/* =============================================
   Token Launch Infrastructure Section
   ============================================= */

.token-launch-infra {
  background-color: #fff;
  padding: 68px 0;
}

/* Section Header */
.token-launch-infra__header {
  max-width: 720px;
  margin: 0 auto 56px;
}

.token-launch-infra__title {
  font-size: 36px;
  line-height: 52px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 16px;
}

.token-launch-infra__desc {
  font-size: 18px;
  line-height: 28px;
  color: #4b5563;
}

/* Feature Cards */
.token-launch-infra__card {
  background: linear-gradient(176.38deg, #2e90fa 2.98%, #d1e9ff 97.02%);
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.token-launch-infra__card-content {
  padding: 24px 24px 22px;
}

.token-launch-infra__card-title {
  font-family: "Inter", serif;
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
}

.token-launch-infra__card-desc {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: -2%;
}

.graphics {
  background-image: url("../assets/img/token-launch-infra.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 619px;
  padding-top: 12px;
  background-position: 58% 50%;
  margin-bottom: -56px;
}

.graphics__card {
  border: 1px solid #eaecf0;
  background: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  width: fit-content;
  margin-bottom: 36px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;

  &.less-padding {
    padding: 17px 24px;
  }
}

.graphics__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.parent-graphics-first-row {
  gap: 192px;
}

.second-row {
  gap: 380px;
}

.graphics__card-icon {
  padding: 12px;
  background: #eff4ff;
  border-radius: 14px;
  height: 48px;
  width: 48px;
  margin-right: 12px;
}

.graphics__card-title {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #101828;
  max-width: 225px;
}

.graphics__card-desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #667085;
  max-width: 197px;
}

/* Text alignment fix */
.card_info {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1700px) {
  .second-row {
    gap: 408px;
  }
}

@media (max-width: 1200px) {

  .hero-section__btn--primary,
  .hero-section__btn {
    width: 75%;
    justify-content: center;
  }

}

@media (max-width: 991px) {

  .hero-section__btn--primary,
  .hero-section__btn {
    width: unset;
  }

  .parent-graphics-first-row,
  .second-row {
    gap: 0;
  }

  .graphics {
    height: auto;
    margin-bottom: -12px;
    background-image: none;
  }

  .graphics__card {
    margin: 0 auto 24px;
    min-width: 335px;
  }

  .token-launch-infra__card {
    margin-bottom: 16px;
  }
}

@media (max-width: 576px) {
  .token-launch-infra__header {
    margin-bottom: 24px;
  }

  .graphics {
    padding: 0;
    background: none;
  }

  .graphics__card {
    margin: 0 0 16px;
    min-width: 335px;
    width: 100%;
  }

  .token-launch-infra {
    padding: 48px 0 0px;
  }
}

.token-infra {
  background-color: #f2f4f7;
  padding: 112px 0;
}

.token-infra__header {
  max-width: 852px;
}

.token-infra__title {
  margin-bottom: 36px;
  font-size: 36px;
}

.token__infra-cards {
  padding: 0 12px;
  margin: 36px 0 0 0;
  overflow-x: clip;
}

.token__infra-cards .slick-slide {
  height: 290px !important;
}

@media (min-width: 2200px) {
  .token__infra-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
  }
}

.token__infra-card {
  background: linear-gradient(180deg, #69b1ff 0%, #1570ef 100%);
  padding: 24px;
  /* height: 320px !important;
  width: 338px !important; */
  border-radius: 16px;
  /* margin: 0 12px; */
}

.token__infra-card__img {
  max-height: 168px;
  width: fit-content;
  margin: auto;
}

.card_info-title {
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #fff;
}

.card_info-desc {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #fff;
}

@media (max-width: 992px) {
  .token-infra__header {
    padding: 16px 8px 0;
  }
}

@media (max-width: 576px) {
  .token-infra {
    padding: 48px 0 0px;
    background-color: #fff;
  }

  .token-infra__title {
    margin-bottom: 24px;
  }

  .token__infra-cards {
    margin: 24px 0;
  }
}

/* ================================================
   Infra-Features Section
   ================================================ */

.infra-features {
  background-color: #fff;
  padding: 96px 0;
}

/* ---- Two-column row ---- */
.infra-features__inner {
  /* gap: 64px; */
}

/* ---- LEFT COLUMN ---- */
.infra-features__left {
  max-width: 428px;
}

/* Badge */
.infra-features__badge {
  display: inline-block;
  background-color: #e0f2fe;
  color: #0369a1;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.02em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* Heading */
.infra-features__heading {
  font-family: "Nobile", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  color: #101828;
  margin-bottom: 0;
}

/* ---- RIGHT COLUMN ---- */
.infra-features__right {}

/* Body paragraphs */
.infra-features__para {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #475467;
  margin-bottom: 20px;
}

.infra-features__para:last-child {
  margin-bottom: 0;
}

/* Blockquote */
.infra-features__blockquote {
  border-left: 3px solid #1570ef;
  padding: 4px 0 4px 20px;
  margin: 20px 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #667085;
}

.infra-features__inner {
  gap: 64px;
}

/* ================================================
   Responsive
   ================================================ */

@media (max-width: 1400px) {
  .infra-features__left {
    max-width: fit-content;
  }

  .infra-features__inner {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .infra-features {
    padding: 56px 0;
  }

  .infra-features__heading {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 576px) {
  .infra-features {
    padding: 80px 0 0px;
  }

  .infra-features__left {
    text-align: center;
  }

  .infra-features__inner {
    gap: 24px;
  }

  .infra-features__para {
    text-align: center;
  }

  .infra-features__blockquote {
    margin: 16px 0;
  }
}

.solution-token-launch-activity-img {
  max-width: 100%;
  height: auto;
}

/* Mobile */
@media (max-width: 767px) {
  .solution-token-launch-activity-img {
    width: 100%;
    max-height: 317px;
  }
}

/* iPad */
@media (min-width: 768px) and (max-width: 1024px) {
  .solution-token-launch-activity-img {
    width: 100%;
    max-height: 605px;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .solution-token-launch-activity-img {
    width: 416px;
    height: 362px;
  }
}

.section__title {
  font-size: 36px;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 24px;
  }
}