.cf-b2b {
  --cf-purple: #1f0051;
  --cf-purple-deep: #13002f;
  --cf-purple-soft: #330086;
  --cf-cyan: #00658a;
  --cf-cyan-bright: #52d3ff;
  --cf-fuchsia: #e8007d;
  --cf-ink: #170b2c;
  --cf-muted: #625d6b;
  --cf-soft: #f5f7fb;
  --cf-white: #ffffff;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding-top: 0;
  color: var(--cf-ink);
  background: var(--cf-white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.55;
}

.cf-b2b *,
.cf-b2b *::before,
.cf-b2b *::after {
  box-sizing: border-box;
}

.cf-b2b h1,
.cf-b2b h2,
.cf-b2b h3,
.cf-b2b p {
  margin-top: 0;
}

.cf-b2b h1,
.cf-b2b h2,
.cf-b2b h3 {
  color: inherit;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: -0.035em;
}

.cf-b2b h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.cf-b2b h2 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.04;
}

.cf-b2b h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.cf-b2b__shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cf-b2b__eyebrow {
  margin-bottom: 20px;
  color: var(--cf-cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.cf-b2b__hero .cf-b2b__eyebrow,
.cf-b2b__section--purple .cf-b2b__eyebrow {
  color: var(--cf-cyan-bright);
}

.cf-b2b__lead {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  line-height: 1.5;
}

.cf-b2b__intro {
  max-width: 800px;
  margin-bottom: 42px;
  color: var(--cf-muted);
  font-size: 1.12rem;
}

.cf-b2b__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 680px;
  align-items: center;
  isolation: isolate;
  color: var(--cf-white);
  background-color: var(--cf-purple-deep);
}

.cf-b2b__hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.cf-b2b__hero--hotels {
  background-image: linear-gradient(90deg, rgba(20, 0, 58, 0.98) 0%, rgba(25, 0, 71, 0.92) 38%, rgba(31, 0, 81, 0.42) 66%, rgba(31, 0, 81, 0.08) 100%), url("hotel-hero-1600.webp");
  background-position: center;
  background-size: cover;
}

.cf-b2b__hero--hotels::after {
  background: linear-gradient(180deg, transparent 65%, rgba(10, 0, 35, 0.48));
}

.cf-b2b__hero--business {
  background: radial-gradient(circle at 78% 35%, rgba(63, 192, 240, 0.32), transparent 24%), radial-gradient(circle at 86% 72%, rgba(232, 0, 125, 0.2), transparent 21%), linear-gradient(125deg, var(--cf-purple-deep), var(--cf-purple) 58%, var(--cf-purple-soft));
}

.cf-b2b__hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr);
  align-items: center;
  gap: 64px;
  padding-block: 92px;
}

.cf-b2b__hero-grid > *,
.cf-b2b__split > *,
.cf-b2b__actions > * {
  min-width: 0;
}

.cf-b2b__hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.cf-b2b__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cf-b2b__button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  max-width: 100%;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.cf-b2b__button:hover {
  transform: translateY(-2px);
}

.cf-b2b .cf-b2b__button:focus-visible,
.cf-b2b .cf-b2b__feature-link:focus-visible,
.cf-b2b details > summary:focus-visible,
.cf-b2b .cf-b2b__address-card a:focus-visible {
  outline: 3px solid var(--cf-cyan-bright);
  outline-offset: 4px;
}

.cf-b2b__button--primary {
  color: var(--cf-purple);
  background: var(--cf-cyan-bright);
}

.cf-b2b__button--primary:hover {
  color: var(--cf-purple);
  background: #79ddff;
}

.cf-b2b__button--secondary {
  color: var(--cf-white);
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(31, 0, 81, 0.34);
  backdrop-filter: blur(10px);
}

.cf-b2b__button--secondary:hover {
  color: var(--cf-white);
  border-color: var(--cf-cyan-bright);
}

.cf-b2b__button--light {
  color: var(--cf-purple);
  background: var(--cf-white);
}

.cf-b2b__note {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.cf-b2b__image-disclosure {
  display: inline-block;
  margin: 12px 0 0;
  padding: 4px 8px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(10, 0, 35, 0.34);
  font-size: 0.72rem;
  line-height: 1.35;
}

.cf-b2b__network {
  position: relative;
  width: min(390px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.cf-b2b__network::before,
.cf-b2b__network::after,
.cf-b2b__network span {
  position: absolute;
  border: 1px solid rgba(82, 211, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.cf-b2b__network::before { inset: 6%; }
.cf-b2b__network::after { inset: 24%; }
.cf-b2b__network span { width: 16px; height: 16px; border: 3px solid var(--cf-cyan-bright); background: var(--cf-purple); box-shadow: 0 0 28px rgba(82, 211, 255, 0.8); }
.cf-b2b__network span:nth-child(1) { top: 4%; left: 47%; }
.cf-b2b__network span:nth-child(2) { top: 47%; right: 3%; }
.cf-b2b__network span:nth-child(3) { bottom: 5%; left: 47%; }
.cf-b2b__network span:nth-child(4) { top: 47%; left: 3%; }

.cf-b2b__ribbon {
  color: var(--cf-white);
  background: var(--cf-purple);
}

.cf-b2b__ribbon .cf-b2b__shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cf-b2b__ribbon span {
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
  font-weight: 700;
  text-align: center;
}

.cf-b2b__ribbon span:last-child {
  border-right: 0;
}

.cf-b2b__section {
  padding-block: 104px;
}

.cf-b2b__section--soft {
  background: var(--cf-soft);
}

.cf-b2b__section--purple {
  color: var(--cf-white);
  background: linear-gradient(135deg, var(--cf-purple-deep), var(--cf-purple));
}

.cf-b2b__cards {
  display: grid;
  gap: 20px;
}

.cf-b2b__cards--five,
.cf-b2b__cards--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cf-b2b__card {
  min-height: 245px;
  padding: 30px;
  border: 1px solid #e6e2ee;
  border-radius: 18px;
  background: var(--cf-white);
  box-shadow: 0 14px 38px rgba(31, 0, 81, 0.07);
}

.cf-b2b__card p {
  margin-bottom: 0;
  color: var(--cf-muted);
}

.cf-b2b__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--cf-cyan);
  border-radius: 50%;
  color: var(--cf-purple);
  font-size: 1.35rem;
  font-weight: 700;
}

.cf-b2b__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.cf-b2b__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
}

.cf-b2b__steps li > span {
  color: var(--cf-cyan-bright);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.cf-b2b__steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cf-b2b__split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 72px;
}

.cf-b2b__feature-link,
.cf-b2b__address-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 36px;
  border-radius: 20px;
  color: var(--cf-white);
  background: linear-gradient(145deg, var(--cf-purple), var(--cf-purple-soft));
  box-shadow: 0 20px 50px rgba(31, 0, 81, 0.18);
}

.cf-b2b__feature-link {
  text-decoration: none;
}

.cf-b2b__feature-link strong,
.cf-b2b__address-card strong {
  font-size: 1.55rem;
}

.cf-b2b__feature-link span,
.cf-b2b__address-card p {
  color: rgba(255, 255, 255, 0.82);
}

.cf-b2b__feature-link b,
.cf-b2b__address-card a {
  color: var(--cf-cyan-bright);
}

.cf-b2b__narrow {
  max-width: 880px;
}

.cf-b2b details {
  border-bottom: 1px solid #dcd6e6;
}

.cf-b2b details > summary {
  cursor: pointer;
  padding: 24px 42px 24px 0;
  color: var(--cf-ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.cf-b2b details > p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--cf-muted);
}

.cf-b2b__cta {
  padding-block: 72px;
  color: var(--cf-white);
  background: linear-gradient(115deg, var(--cf-fuchsia), var(--cf-purple) 72%);
}

.cf-b2b__cta .cf-b2b__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cf-b2b__cta h2 {
  max-width: 780px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.cf-b2b__cta p {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .cf-b2b__hero-grid,
  .cf-b2b__split {
    grid-template-columns: 1fr;
  }

  .cf-b2b__network {
    position: absolute;
    right: -80px;
    bottom: -120px;
    opacity: 0.55;
  }

  .cf-b2b__cards--five,
  .cf-b2b__cards--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cf-b2b__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cf-b2b {
    padding-top: 0;
  }

  .cf-b2b__shell {
    width: min(calc(100% - 32px), 1180px);
  }

  .cf-b2b h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.8vw, 2.75rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .cf-b2b h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .cf-b2b__hero {
    min-height: auto;
  }

  .cf-b2b__hero--hotels {
    background-image: linear-gradient(180deg, rgba(19, 0, 47, 0.96) 0%, rgba(31, 0, 81, 0.88) 52%, rgba(31, 0, 81, 0.44) 100%), url("hotel-hero-768.webp");
    background-position: center;
  }

  .cf-b2b__hero-grid {
    gap: 30px;
    padding-block: 56px 92px;
  }

  .cf-b2b__lead {
    font-size: 1.05rem;
  }

  .cf-b2b__actions,
  .cf-b2b__button {
    width: 100%;
  }

  .cf-b2b__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .cf-b2b__button {
    min-height: 52px;
    padding: 13px 16px;
    font-size: 0.98rem;
  }

  .cf-b2b__ribbon .cf-b2b__shell,
  .cf-b2b__cards--five,
  .cf-b2b__cards--six {
    grid-template-columns: 1fr;
  }

  .cf-b2b__ribbon span {
    padding: 18px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .cf-b2b__ribbon span:last-child {
    border-bottom: 0;
  }

  .cf-b2b__section {
    padding-block: 72px;
  }

  .cf-b2b__card {
    min-height: 0;
  }

  .cf-b2b__cta .cf-b2b__shell {
    align-items: stretch;
    flex-direction: column;
  }

  .cf-b2b__cta {
    padding-bottom: 104px;
  }
}

@media (max-width: 360px) {
  .cf-b2b__shell {
    width: min(calc(100% - 24px), 1180px);
  }

  .cf-b2b h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.15rem);
  }

  .cf-b2b__hero-grid {
    padding-block: 44px 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cf-b2b *,
  .cf-b2b *::before,
  .cf-b2b *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
