/* ── Consultation Page ── */

.cp-page {
  background: #f6f9fc;
}

/* ── Shared section wrapper ── */
.cp-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 80px;
  box-sizing: border-box;
}

.cp-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #073248;
  letter-spacing: -2.21px;
  line-height: 1.1;
  margin: 0 0 48px;
  text-align: center;
}
.cp-section__heading--center {
  text-align: center;
}

/* ── Hero ── */
.cp-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 80px 64px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cp-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cp-hero__title {
  font-size: 70px;
  font-weight: 700;
  color: #073248;
  letter-spacing: -0.92px;
  line-height: 1.05;
  margin: 0;
}

.cp-hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #38596a;
  line-height: 1.67;
  letter-spacing: -1.03px;
  margin: 0;
}

.cp-hero__photo {
  display: flex;
  justify-content: center;
}

.cp-hero__photo-card {
  background: #fff;
  border-radius: 27px;
  box-shadow: 10px 10px 30px 0 #d1d9eb;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
}

.cp-hero__photo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ── Formats section ── */
.cp-formats {
  background: #f6f9fc;
  padding-top: 0;
}

.cp-formats__title {
  font-size: 48px;
  font-weight: 700;
  color: #073248;
  letter-spacing: -2.21px;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 48px;
}

.cp-formats__list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cp-format {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 130px;
}

.cp-format__icon {
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 8px 8px 24px 0 #d1d9eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-format__icon img {
  object-fit: contain;
}

.cp-format--office .cp-format__icon img   { width: 34px; height: 46px; }
.cp-format--phone .cp-format__icon img    { width: 43px; height: 42px; }
.cp-format--zoom .cp-format__icon img     { width: 49px; height: 29px; }
.cp-format--telegram .cp-format__icon img { width: 49px; height: 40px; }
.cp-format--whatsapp .cp-format__icon img { width: 51px; height: 51px; }

.cp-format__label {
  font-size: 20px;
  font-weight: 600;
  color: #073248;
  text-align: center;
  letter-spacing: -0.92px;
  line-height: 1.5;
}

/* ── Topics section ── */
.cp-topics {
  padding-top: 64px;
}

.cp-topics__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-topic {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 4px 4px 16px 0 #e7eff7;
}

.cp-topic__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-topic__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.cp-topic__label {
  font-size: 20px;
  font-weight: 600;
  color: #073248;
  letter-spacing: -0.92px;
  line-height: 1.5;
}

/* ── What you learn section ── */
.cp-learn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 64px;
  padding-bottom: 64px;
}

.cp-learn__title {
  font-size: 48px;
  font-weight: 700;
  color: #073248;
  letter-spacing: -2.21px;
  line-height: 1.1;
  margin: 0 0 24px;
}

.cp-learn__intro {
  font-size: 24px;
  font-weight: 500;
  color: #38596a;
  line-height: 1.58;
  letter-spacing: -0.5px;
  margin: 0;
}

/* Timeline */
.cp-timeline {
  display: flex;
  flex-direction: column;
}

.cp-timeline__item {
  display: flex;
  gap: 16px;

  &:last-child {
    .cp-timeline__content {
      padding-bottom: 0;
    }
  }
}

/* node column: spine (left) + horizontal + dot (right) */
.cp-timeline__node {
  position: relative;
  width: 70px;
  flex-shrink: 0;
  align-self: stretch;
}

/* vertical spine: from dot-center downward */
.cp-timeline__node::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  bottom: 0;
  background: #e7eff7;
}

/* horizontal connector: from spine to dot */
.cp-timeline__node::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 25px;
  height: 4px;
  background: #e7eff7;
}

/* dot: top-right corner of node column */
.cp-timeline__dot {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background: #e7eff7;
  border: 4px solid #f6f9fc;
  box-sizing: border-box;
}

.cp-timeline__content {
  padding-bottom: 56px;
  flex: 1;
  padding-top: 2px;
}

.cp-timeline__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #073248;
  letter-spacing: -1.47px;
  line-height: 1.18;
  margin: 0 0 24px;
}

.cp-timeline__text {
  font-size: 18px;
  font-weight: 400;
  color: #313131;
  line-height: 1.67;
  letter-spacing: -0.73px;
  margin: 0 0 16px;
}

/* Checklist */
.cp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #313131;
  line-height: 1.67;
  letter-spacing: -0.73px;
}

.cp-checklist li::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #0083da;
  border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9' fill='none'%3E%3Cpath d='M1 4L4.5 7.5L11 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 8px;
  margin-top: 2px;
}

/* ── CTA Banner ── */
.cp-banner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 80px;
  box-sizing: border-box;
}

.cp-banner__inner {
  position: relative;
  background: #fafcfd;
  border-radius: 27px;
  box-shadow: 10px 10px 30px 0 #d1d9eb;
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  min-height: 388px;
  box-sizing: border-box;
}

.cp-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.6;
}

/* Wave icons */
.cp-banner__wave-icon {
  position: absolute;
  pointer-events: none;
  width: 51px;
  height: 51px;
  z-index: 1;
}

.cp-banner__wave-icon--globe    { left: 22.6%; top: 39px; }
.cp-banner__wave-icon--search   { left: 8.7%;  top: 79px; }
.cp-banner__wave-icon--note     { left: 34.9%; top: 73px; }
.cp-banner__wave-icon--airplane { left: 64.5%; top: 276px; }
.cp-banner__wave-icon--building { left: 75.8%; top: 294px; }
.cp-banner__wave-icon--book     { left: 86.3%; top: 258px; }

.cp-banner__text {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #073248;
  text-align: center;
  letter-spacing: -1.47px;
  line-height: 1.5;
  margin: 0;
  max-width: 900px;
  padding-top: 30px;
}

.cp-banner__btn {
  position: relative;
  background: #e54f47;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.74px;
  line-height: 1.69;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cp-banner__btn:hover {
  background: #c73e37;
}

/* ── BCIE section ── */
.cp-bcie {
  background: #fff;
  border-radius: 27px;
  margin: 0 auto 0;
  max-width: 1280px;
  padding: 80px 80px;
}

.cp-bcie__inner {
  max-width: 900px;
  margin: 0 auto;
}

.cp-bcie__pre-title {
  font-size: 48px;
  font-weight: 700;
  color: #073248;
  letter-spacing: -2.21px;
  line-height: 1;
  text-align: center;
  margin: 0 0 12px;
  white-space: nowrap;
}

.cp-bcie__subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #38596a;
  letter-spacing: -0.5px;
  line-height: 30px;
  text-align: center;
  margin: 0 0 48px;
}

.cp-bcie__text {
  font-size: 18px;
  font-weight: 300;
  color: #313131;
  line-height: 1.67;
  letter-spacing: -0.73px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cp-bcie__text p {
  margin: 0;
}

.cp-bcie__text strong {
  font-weight: 600;
}

.cp-dash {
  color: #e54f47;
}

.cp-bcie__list {
  list-style: none;
  padding: 0 0 0 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cp-bcie__list li::before {
  content: '• ';
}

/* ── Quote ── */
.cp-quote {
  max-width: 1280px;
  padding: 40px 80px 80px;
}

.cp-quote__text {
  font-size: 24px;
  font-weight: 400;
  color: #073248;
  line-height: 1.42;
  letter-spacing: -1.1px;
  font-style: italic;
  margin: 0;
}

.cp-quote__bcie {
  color: #0083da;
  font-style: italic;
}

.cp-quote__dark {
  color: #073248;
}

/* ── Mobile ── */
@media (max-width: 1023px) {
  .cp-section {
    padding: 56px 40px;
  }

  .cp-hero {
    grid-template-columns: 1fr;
    padding: 56px 40px 40px;
    gap: 32px;
  }

  .cp-hero__title {
    font-size: 48px;
  }

  .cp-formats__title {
    font-size: 36px;
  }

  .cp-section__heading {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .cp-topics__list {
    grid-template-columns: 1fr;
  }

  .cp-learn {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cp-learn__title {
    font-size: 36px;
  }

  .cp-bcie__pre-title {
    font-size: 36px;
    letter-spacing: -1.5px;
    white-space: normal;
  }

  .cp-bcie__subtitle {
    font-size: 20px;
  }

  .cp-banner,
  .cp-quote,
  .cp-bcie {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cp-banner__inner {
    padding: 40px 32px;
  }

  .cp-banner__text {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .cp-section {
    padding: 40px 16px;
  }

  .cp-banner__inner {
    min-height: unset;
    padding: 40px 20px;
    gap: 20px;
  }

  .cp-banner__bg,
  .cp-banner__wave-icon {
    display: none;
  }

  .cp-banner__text {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.83px;
  }

  .cp-hero {
    padding: 40px 16px 32px;
  }

  .cp-hero__title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .cp-hero__subtitle {
    font-size: 16px;
  }

  .cp-formats {
    padding-top: 0;
  }

  .cp-formats__list {
    gap: 20px;
    justify-content: center;
  }

  .cp-format {
    width: 100px;
  }

  .cp-format__icon {
    width: 90px;
    height: 90px;
  }

  .cp-format__icon img {
    width: 36px;
    height: 36px;
  }

  .cp-format__label {
    font-size: 15px;
  }

  .cp-formats__title {
    font-size: 28px;
  }

  .cp-section__heading {
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 32px;
  }

  .cp-topic {
    padding: 16px;
    gap: 16px;
  }

  .cp-topic__label {
    font-size: 16px;
  }

  .cp-timeline__section-title {
    font-size: 24px;
  }

  .cp-timeline__text,
  .cp-checklist li {
    font-size: 16px;
  }

  .cp-banner,
  .cp-quote {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cp-banner__inner {
    padding: 32px 20px;
    gap: 24px;
  }

  .cp-banner__text {
    font-size: 20px;
    letter-spacing: -0.8px;
  }

  .cp-banner__btn {
    width: 100%;
    text-align: center;
  }

  .cp-bcie {
    padding: 40px 16px;
    border-radius: 0;
  }

  .cp-bcie__pre-title {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .cp-bcie__subtitle {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .cp-bcie__text {
    font-size: 16px;
  }

  .cp-quote {
    padding: 24px 16px 40px;
  }

  .cp-quote__text {
    font-size: 18px;
  }
}
