/* Shared: Content pages
 * Shared typography, colors, header, footer, and responsive behavior.
 */

.content-page {
  background: var(--color-bg);
  color: var(--color-text-80);
  font-family: var(--font-family);
}

.content-page h1,
.content-page h2,
.content-page h3,
.content-page h4 {
  font-family: var(--font-family);
  font-weight: 590;
}

.content-page .glow.a {
  display: none;
}

.content-page .glow.b {
  display: none;
}

.content-page .hero,
.content-page .partners__hero {
  background: var(--background-content-hero);
}

.content-page .content-hero::before,
.content-page .content-hero::after {
  display: none;
}

.content-page .content-hero__title {
  max-width: 15ch;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 590;
  line-height: 1.08;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, #ffe4d4 0%, #f1a575 52%, #9a3a22 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.content-page .content-hero__title .ac {
  color: #fb5106;
  -webkit-text-fill-color: #fb5106;
}

.content-page .content-hero__eyebrow,
.content-page .eyebrow,
.content-page .kick {
  color: #f1a575;
}

.content-page .content-hero__eyebrow {
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 590;
  line-height: 1.3;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.content-page .content-hero__lead {
  max-width: 62ch;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--color-text-62);
}

.content-page .content-hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.content-page .content-button {
  min-height: 54px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 590;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 0.18s, transform 0.18s, border-color 0.18s;
}

.content-page .content-button--primary {
  border: 0;
  background: var(--gradient-orange-cta);
  color: #fff;
  box-shadow: var(--shadow-btn);
}

.content-page .content-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #150a07;
  color: #fff;
}

.content-page .content-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.content-page .card,
.content-page .step,
.content-page .rule,
.content-page .wide,
.content-page .cta .box {
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(93, 38, 26, 0.42), rgba(10, 4, 3, 0.94));
  box-shadow: inset 0 0 12px rgba(255, 221, 205, 0.06);
}

.content-page .content-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-copper);
  border-radius: 50%;
  background: var(--color-btn-dark);
}

.content-page .content-icon img,
.content-page .content-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.content-page .tag {
  border-color: rgba(241, 165, 117, 0.65) !important;
  background: rgba(21, 10, 7, 0.9);
  color: #f1a575 !important;
}

.content-page .band,
.content-page .sec,
.content-page .steps-sec,
.content-page .gets {
  border-color: rgba(255, 255, 255, 0.09);
}

.content-page .phone {
  border-color: rgba(241, 165, 117, 0.2);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 34px rgba(251, 81, 6, 0.08);
}

@media (max-width: 767px) {
  .content-page .hero-media {
    order: initial;
  }
}

@media (max-width: 560px) {
  .content-page .content-hero__actions .content-button {
    width: 100%;
  }
}
