.btn-primary {
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-bg: var(--brand-primary-dark);
  --bs-btn-hover-border-color: var(--brand-primary-dark);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--brand-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
.hero__h1,
.section-header,
.service-card__title,
.compare-col__title,
.pain-list__title,
.about__channels-title,
.site-header__logo,
.site-footer__logo {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.005em;
}

.section-padding {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.bg-light {
  background-color: var(--brand-bg-light) !important;
}

.section-header {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .section-header {
    font-size: 2rem;
  }
}

:root {
  --brand-primary: #1d6fb8;
  --brand-primary-dark: #16578f;
  --brand-accent: #f5a623;
  --brand-bg-light: #f5f7fa;
  --brand-bg-dark: #1a2940;
  --brand-text: #1f2937;
  --brand-text-muted: #6b7280;
  --brand-border: #e5e7eb;
  --white: #fff;
  --black: #030303;
  --hero-from: #1a4d80;
  --hero-to: #123960;
  --bs-primary: var(--brand-primary);
  --bs-primary-rgb: 29, 111, 184;
}

.font-body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.font-display {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.005em;
}

b {
  font-weight: 700;
}

p:last-child {
  margin-bottom: 0;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.site-header__logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-text);
  text-decoration: none;
  letter-spacing: 0.5px;
}
.site-header__logo:hover {
  color: var(--brand-primary);
}
.site-header__logo .dot {
  color: var(--brand-primary);
}
.site-header__phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-text);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__phone:hover {
  color: var(--brand-primary);
}

.site-footer {
  background: var(--brand-bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.9rem;
}
.site-footer__logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.site-footer__logo .dot {
  color: #ffd966;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffd966;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  padding: 0.2rem 0;
}
.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 1024px) {
  .nav-toggler {
    display: none;
  }
}

.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
}

.hero .btn-primary,
.contact-block .btn-primary {
  background: linear-gradient(135deg, #ffd966 0%, #f5c842 100%);
  border: none;
  color: #1a2940;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(255, 217, 102, 0.45), 0 6px 18px rgba(255, 217, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hero .btn-primary:hover, .hero .btn-primary:focus,
.contact-block .btn-primary:hover,
.contact-block .btn-primary:focus {
  transform: translateY(-2px);
  color: #1a2940;
  box-shadow: 0 0 36px rgba(255, 217, 102, 0.6), 0 10px 24px rgba(255, 217, 102, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, #ffe082 0%, #f8cf52 100%);
}

.audience-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.2s;
}
.audience-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 16px rgba(29, 111, 184, 0.08);
}
.audience-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--brand-primary);
}
.audience-card__text {
  font-size: 0.95rem;
  color: var(--brand-text-muted);
  margin-bottom: 0;
}

.service-card {
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.09) 50%, transparent 65%), linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  text-align: left;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(3, 3, 3, 0.18);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(3, 3, 3, 0.3);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--brand-bg-light);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.service-card__icon svg,
.service-card__icon i.ph {
  width: 30px;
  height: 30px;
  font-size: 30px;
}
.service-card--flagship .service-card__icon {
  background: #ffd966;
  color: #1a2940;
}
.service-card--flagship .service-card__title {
  color: #ffd966;
}
.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffd966;
  line-height: 1.3;
}
.service-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  line-height: 1.55;
}
.service-card__flag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  color: #ffd966;
  border: 1px solid #ffd966;
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.step-card {
  background: var(--brand-bg-light);
  border-radius: 12px;
  padding: 1.5rem 1.25rem 1.25rem;
  height: 100%;
  position: relative;
  text-align: left;
}
.step-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.step-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--brand-text);
}
.step-card__text {
  font-size: 0.9rem;
  color: var(--brand-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.compare-col {
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.09) 50%, transparent 65%), linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(3, 3, 3, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.compare-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  pointer-events: none;
}
.compare-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(3, 3, 3, 0.3);
}
.compare-col__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.compare-col__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffd966;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.compare-col__icon svg,
.compare-col__icon i.ph {
  width: 24px;
  height: 24px;
  font-size: 24px;
}
.compare-col__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.diploma-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 0.75rem;
  height: 100%;
  transition: all 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.diploma-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 6px 18px rgba(29, 111, 184, 0.12);
  transform: translateY(-2px);
  color: inherit;
}
.diploma-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--brand-bg-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diploma-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.diploma-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  color: var(--brand-text);
  line-height: 1.3;
}

.rgr-link {
  background: var(--brand-bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.rgr-link__text {
  margin: 0;
  font-size: 1rem;
}
.rgr-link__text strong {
  color: var(--brand-text);
}

.pain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pain-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pain-list__item:last-child {
  border-bottom: none;
}
.pain-list__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffd966;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pain-list__icon svg,
.pain-list__icon i.ph {
  width: 26px;
  height: 26px;
  font-size: 26px;
}
.pain-list__body {
  padding-top: 0.25rem;
}
.pain-list__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.pain-list__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  line-height: 1.55;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-list li {
  padding: 0.5rem 0 0.5rem 1.85rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 14px;
  height: 14px;
  background: #ffd966;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/></svg>") no-repeat center/contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/></svg>") no-repeat center/contain;
}

.contact-side h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-side li {
  padding: 0.4rem 0;
}
.contact-side a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-side a:hover {
  color: #ffd966;
}
.contact-side svg {
  width: 18px;
  height: 18px;
}

.site-nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
  }
}
.site-nav a {
  color: var(--brand-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.site-nav a:hover {
  color: var(--brand-primary);
}
.site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
  padding: 1rem 1.5rem;
  gap: 1rem;
}

.nav-toggler {
  background: none;
  border: 1px solid var(--brand-border);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
}
.nav-toggler svg {
  width: 24px;
  height: 24px;
  color: var(--brand-text);
}
@media (min-width: 1024px) {
  .nav-toggler {
    display: none;
  }
}

.hero {
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 100%);
  color: #fff;
  padding: 2rem 0 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero {
    min-height: 680px;
    display: flex;
    align-items: stretch;
  }
  .hero > .container-xl {
    display: flex;
    align-items: stretch;
    width: 100%;
  }
  .hero > .container-xl > .row {
    width: 100%;
    flex: 1 1 auto;
    align-items: flex-end !important;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -5%;
  width: 55%;
  height: 200%;
  background: rgba(255, 255, 255, 0.07);
  transform: rotate(15deg);
  pointer-events: none;
  z-index: 0;
}
.hero > .container-xl {
  position: relative;
  z-index: 1;
}
.hero__text {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
  align-self: center;
}
@media (min-width: 1024px) {
  .hero__text {
    padding-bottom: 2.5rem;
  }
}
.hero__h1 {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__h1 .accent {
  color: #ffd966;
}
@media (min-width: 768px) {
  .hero__h1 {
    font-size: 2.4rem;
  }
}
.hero__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 1.75rem;
}
.hero__lead strong {
  color: #ffd966;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero__lead {
    font-size: 1.2rem;
  }
}
.hero__contacts {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}
.hero__phone {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.hero__phone:hover {
  color: #ffd966;
}
.hero__messengers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  transition: all 0.2s;
}
.hero__messengers a:hover {
  background: #fff;
  color: var(--brand-primary);
}
.hero .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
}
.hero__photo {
  position: relative;
  text-align: center;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 0;
}
.hero__photo img {
  max-width: 280px;
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 0;
  filter: drop-shadow(0 10px 20px rgba(3, 3, 3, 0.28));
}
@media (min-width: 768px) {
  .hero__photo img {
    max-width: 380px;
  }
}
@media (min-width: 1024px) {
  .hero__photo img {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-bottom: 0;
  }
}

.badges {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}
.badge-item__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--brand-bg-light);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-item__icon svg,
.badge-item__icon i.ph {
  width: 28px;
  height: 28px;
  font-size: 28px;
}
.badge-item__text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}

#pain-points {
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 100%);
  position: relative;
  overflow: hidden;
}
#pain-points::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg/pattern-realestate-light.svg") repeat;
  background-size: 180px 180px;
  opacity: 0.06;
  pointer-events: none;
}
#pain-points > .container-xl {
  position: relative;
  z-index: 1;
}
#pain-points .section-header {
  color: #fff;
}
#pain-points .section-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.6;
}

.pain-illustration {
  position: relative;
  min-height: 280px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.pain-illustration__placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
.pain-illustration__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}
@media (min-width: 1024px) {
  .pain-illustration {
    min-height: 480px;
    margin-top: 0;
  }
  .pain-illustration__placeholder {
    min-height: 480px;
  }
}

.apartment-svg .draw-target {
  stroke-dasharray: var(--len, 1000);
  stroke-dashoffset: var(--len, 1000);
  transition: stroke-dashoffset 2.8s ease-out;
}
.apartment-svg.is-drawn .draw-target {
  stroke-dashoffset: 0;
}
@media (prefers-reduced-motion: reduce) {
  .apartment-svg .draw-target {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    transition: none;
  }
}

.pain-footer {
  background: rgba(255, 217, 102, 0.16);
  border: 1px solid rgba(255, 217, 102, 0.5);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0;
  text-align: left;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  backdrop-filter: blur(2px);
}
.pain-footer strong {
  color: #ffd966;
  font-weight: 700;
}
@media (min-width: 768px) {
  .pain-footer {
    font-size: 1.1rem;
    padding: 1.1rem 1.4rem;
  }
}

#process {
  position: relative;
  background: #fff url("../img/bg/pattern-realestate.svg") repeat;
  background-size: 180px 180px;
}
#process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 247, 250, 0.92) 0%, rgba(255, 255, 255, 0.84) 100%);
  pointer-events: none;
}
#process > .container-xl {
  position: relative;
  z-index: 1;
}

.about__photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(3, 3, 3, 0.1);
  height: 100%;
  min-height: 320px;
}
.about__photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.about__bio p {
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about__bio p:last-child {
  margin-bottom: 0;
}
.about__channels {
  background: var(--brand-bg-light);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.75rem;
}
.about__channels-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--brand-text);
}
.about__channels-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.about__channels-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--brand-border);
  transition: all 0.15s;
}
.about__channels-list a:hover {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(29, 111, 184, 0.12);
  transform: translateY(-1px);
}
.about__channels-list img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}

.faq-acc .accordion-item {
  border: 1px solid var(--brand-border);
  border-radius: 8px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-acc .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 1.25rem;
  background: #fff;
  color: var(--brand-text);
}
.faq-acc .accordion-button:not(.collapsed) {
  background: var(--brand-bg-light);
  color: var(--brand-primary);
  box-shadow: none;
}
.faq-acc .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(29, 111, 184, 0.15);
  border-color: var(--brand-primary);
}
.faq-acc .accordion-body {
  padding: 1.25rem;
  color: var(--brand-text-muted);
  line-height: 1.6;
}

.contact-block {
  background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-to) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-block h2 {
  color: #fff;
}
.contact-block .text-muted {
  color: rgba(255, 255, 255, 0.85) !important;
}
.contact-block label {
  color: #fff;
  font-weight: 500;
}
.contact-block .form-control {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  color: var(--brand-text);
}
.contact-block .form-control:focus {
  background: #fff;
  border-color: #ffd966;
  box-shadow: 0 0 0 0.2rem rgba(255, 217, 102, 0.25);
}

.text-brand {
  color: var(--brand-primary) !important;
}

.bg-brand {
  background-color: var(--brand-primary) !important;
  color: #fff;
}

.text-brand-primary {
  color: var(--brand-primary) !important;
}

.bg-brand-primary {
  background-color: var(--brand-primary) !important;
}

.text-brand-primary-dark {
  color: var(--brand-primary-dark) !important;
}

.bg-brand-primary-dark {
  background-color: var(--brand-primary-dark) !important;
}

.text-brand-accent {
  color: var(--brand-accent) !important;
}

.bg-brand-accent {
  background-color: var(--brand-accent) !important;
}

.text-brand-bg-light {
  color: var(--brand-bg-light) !important;
}

.bg-brand-bg-light {
  background-color: var(--brand-bg-light) !important;
}

.text-brand-bg-dark {
  color: var(--brand-bg-dark) !important;
}

.bg-brand-bg-dark {
  background-color: var(--brand-bg-dark) !important;
}

.text-brand-text {
  color: var(--brand-text) !important;
}

.bg-brand-text {
  background-color: var(--brand-text) !important;
}

.text-brand-text-muted {
  color: var(--brand-text-muted) !important;
}

.bg-brand-text-muted {
  background-color: var(--brand-text-muted) !important;
}

.text-brand-border {
  color: var(--brand-border) !important;
}

.bg-brand-border {
  background-color: var(--brand-border) !important;
}

.text-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.text-black {
  color: var(--black) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.text-brand {
  color: var(--brand-primary) !important;
}

.bg-brand {
  background-color: var(--brand-primary) !important;
  color: #fff;
}