.header__cta {
  display: none;
  padding: 10px 20px;
  font-size: 0.875rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head .section-subtitle {
  margin: 0 auto;
}

.section-wave {
  position: relative;
}

.section-wave::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'%3E%3Cpath d='M0,80 L0,48 C180,58 320,28 560,50 C820,74 980,34 1200,54 L1200,80 Z' fill='%23f37021'/%3E%3Cpath d='M0,80 L0,52 C160,60 300,32 540,54 C780,76 940,38 1200,58 L1200,80 Z' fill='%23f5a820'/%3E%3Cpath d='M0,80 L0,56 C140,64 280,38 520,58 C760,78 920,44 1200,62 L1200,80 Z' fill='%23757777'/%3E%3Cpath d='M0,80 L0,60 C120,66 260,44 500,62 C740,80 900,48 1200,66 L1200,80 Z' fill='%23e8e8e8'/%3E%3Cpath d='M0,0 L1200,0 L1200,60 C900,48 740,72 500,58 C260,44 120,66 0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat center top;
  background-size: 100% 100%;
  pointer-events: none;
}

.about.section-wave::before,
.braces-teaser.section-wave::before {
  display: none;
}

.about__grid {
  position: relative;
}

.about__pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  margin-top: 40px;
  grid-column: 1 / -1;
}

.about__image {
  position: relative;
}

.about__image::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 72%;
  height: 72%;
  border: 2px solid var(--color-brand);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.about__image img {
  position: relative;
  z-index: 1;
}

.services {
  padding: var(--section-padding) 0;
  background: var(--color-brand-soft);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(var(--color-brand-rgb), 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services__grid--five {
  position: relative;
  z-index: 1;
}

.service-card__ring {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-brand);
  border-radius: 50%;
  background: var(--color-bg-white);
  color: var(--color-brand);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-brand);
}

.service-card__ring svg {
  width: 28px;
  height: 28px;
}

.contacts__socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.contacts__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), transform var(--transition);
}

.contacts__social:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
}

.contacts__social:active {
  transform: translate3d(0, 0, 0) scale(0.97);
  transition-duration: 0.1s;
}

.contacts__social svg {
  width: 18px;
  height: 18px;
  color: var(--color-brand);
}

@media (max-width: 768px) {
  .header__cta {
    display: none;
  }

  .about__pillars {
    grid-template-columns: 1fr;
  }

  .about__image::before {
    top: 8px;
    right: 8px;
    left: auto;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
}

@media (min-width: 769px) {
  .header__cta {
    display: inline-flex;
  }
}
