/* Agent / staff / accompaniment extras. Loaded only on those pages. */
:root {
  --primary: #345da0;
  --primary-light: #4a7bc8;
  --primary-pale: #e8eff8;
  --primary-ultra-pale: #f0f5fc;
  --accent: #c24036;
  --accent-light: #e85a4f;
  --accent-pale: #fdf0ef;
  --text: #1a1a2e;
  --text-secondary: #4b5563;
  --muted: #9ca3af;
  --bg: #f7f8fc;
  --card-bg: #ffffff;
  --card-border: rgba(52, 93, 160, 0.08);
  --font: "Roboto", sans-serif;
  --max-blue: color(srgb 0.11 0.31 0.85 / 0.7);
  --max-violet-light: color(srgb 0.49 0.23 0.93 / 0.7);
}
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
}
.anim--rise {
  animation: rise 0.65s cubic-bezier(.22, 1, .36, 1) forwards;
}
.anim--pop {
  animation: fadeScale 0.6s cubic-bezier(.22, 1, .36, 1) forwards;
}
.anim--slide {
  animation: slideDown 0.5s cubic-bezier(.22, 1, .36, 1) forwards;
}
.anim--fade {
  animation: fadeIn 0.6s ease forwards;
}
.anim--up {
  animation: fadeUp 0.7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.anim--left {
  animation: fadeLeft 0.7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.anim--right {
  animation: fadeRight 0.7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.anim--d1 {
  animation-delay: 0.05s;
}
.anim--d2 {
  animation-delay: 0.12s;
}
.anim--d3 {
  animation-delay: 0.2s;
}
.anim--d4 {
  animation-delay: 0.3s;
}
.anim--d5 {
  animation-delay: 0.4s;
}
.anim--d6 {
  animation-delay: 0.5s;
}
.anim--d7 {
  animation-delay: 0.6s;
}
.anim--d8 {
  animation-delay: 0.7s;
}
.anim--d9 {
  animation-delay: 0.8s;
}
.info__gallery .sgal {
  margin: 0;
}
@media (max-width: 480px) {
.info__gallery .sgal__grid {
    gap: 8px;
  }
}
.footer .anim--d4 {
  animation-delay: 0.4s;
}
.footer .anim--d5 {
  animation-delay: 0.52s;
}
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 860px) {
.agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
.agents-grid {
    grid-template-columns: 1fr;
  }
}
.agcard {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(52, 93, 160, 0.07);
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1), box-shadow 0.5s cubic-bezier(.22, 1, .36, 1);
  text-decoration: none;
  color: inherit;
}
.agcard:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 40px rgba(52, 93, 160, 0.14), 0 2px 8px rgba(52, 93, 160, 0.07);
}
.agcard__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(52, 93, 160, 0.22);
}
.agcard__initials {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  user-select: none;
}
.agcard__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.agcard__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 3px 10px;
  border-radius: 50px;
}
.agcard__badge svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.agcard__stars {
  display: flex;
  gap: 3px;
  justify-content: center;
}
.agcard__stars svg {
  color: #f59e0b;
}
.agcard__link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: gap 0.2s var(--ease), color 0.2s;
}
.agcard:hover .agcard__link {
  gap: 8px;
  color: var(--primary-light);
}
.agcard--active {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(52, 93, 160, 0.16), 0 0 0 2px var(--primary-pale);
}
.agcard--active .agcard__avatar {
  box-shadow: 0 4px 20px rgba(52, 93, 160, 0.32);
}
.agents-grid--photo {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
.agents-grid--photo {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
.agents-grid--photo {
    grid-template-columns: 1fr;
  }
}
.agcard--photo {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 24px rgba(52, 93, 160, 0.07);
  transition: transform 0.45s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.45s cubic-bezier(.22, 1, .36, 1);
}
.agcard--photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(52, 93, 160, 0.15);
}
.agcard__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3.4;
  overflow: hidden;
  background: var(--primary-ultra-pale, #e8edf7);
}
.agcard__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1);
}
.agcard--photo:hover .agcard__photo {
  transform: scale(1.04);
}
.agcard__status {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.agcard__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: agpulse 2s ease-in-out infinite;
}
.agcard__info {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.agcard--photo .agcard__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.agcard--photo .agcard__badge {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  background: none;
  border: none;
}
.agcard__accred {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  letter-spacing: 0.02em;
}
.agcard__call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(194, 64, 54, 0.25);
  width: fit-content;
}
.agcard__call:hover {
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(194, 64, 54, 0.35);
}
@keyframes agpulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}
.agents-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
.agents-grid--compact {
    grid-template-columns: 1fr;
  }
}
.agcard--mini {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 12px rgba(52, 93, 160, 0.06);
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.35s cubic-bezier(.22, 1, .36, 1);
}
.agcard--mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(52, 93, 160, 0.12);
}
.agcard__mini-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--primary-pale, #d6e0f0);
}
.agcard--mini .agcard__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.agcard--mini .agcard__badge {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  padding: 0;
  background: none;
  border: none;
}
.agcard--mini.agcard--active {
  border-color: var(--primary);
  background: var(--primary-ultra-pale, #eef2fa);
}
.agent-lp.inner-page__stack {
  gap: 48px;
}
.agent-lp__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.agent-lp__title {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.agent-lp__title em {
  font-style: normal;
  color: var(--primary);
}
.agent-lp__lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin-top: -8px;
}
.agent-lp-hero {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(52, 93, 160, 0.09);
  position: relative;
}
.agent-lp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent-light));
  z-index: 1;
}
@media (max-width: 900px) {
.agent-lp-hero {
    grid-template-columns: 1fr;
  }
}
.agent-lp-hero__main {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(52, 93, 160, 0.08) 0%, transparent 55%),
    var(--card-bg);
}
@media (max-width: 640px) {
.agent-lp-hero__main {
    padding: 24px 20px;
    gap: 22px;
  }
}
.agent-lp-hero__identity {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
@media (max-width: 640px) {
.agent-lp-hero__identity {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.agent-lp-hero__photo-wrap {
  width: 160px;
  height: 160px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 28px rgba(52, 93, 160, 0.18);
  border: 3px solid #fff;
  background: var(--primary-ultra-pale);
}
@media (max-width: 640px) {
.agent-lp-hero__photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 20px;
  }
}
.agent-lp-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.agent-lp-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.agent-lp-hero__badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
.agent-lp-hero__badges {
    justify-content: center;
  }
}
.agent-lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 4px 12px;
  border-radius: 50px;
}
.agent-lp-hero__accred {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: 50px;
}
.agent-lp-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-ultra-pale);
  padding: 4px 10px;
  border-radius: 50px;
}
.agent-lp-hero__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: agent-lp-pulse 1.8s ease infinite;
}
@keyframes agent-lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.agent-lp-hero__name {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
.agent-lp-hero__name {
    font-size: 22px;
  }
}
.agent-lp-hero__role {
  font-size: 15px;
  color: var(--text-secondary);
}
.agent-lp-hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
.agent-lp-hero__rating {
    justify-content: center;
  }
}
.agent-lp-hero__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}
.agent-lp-hero__rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}
.agent-lp-hero__lead {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 420px;
  margin-top: 4px;
}
.agent-lp-hero__panel {
  padding: 28px 26px;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agent-lp-hero__panel-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}
.agent-lp-hero__contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agent-lp-hero__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease;
}
a.agent-lp-hero__contact:hover {
  background: rgba(255, 255, 255, 0.18);
}
.agent-lp-hero__contact--static {
  cursor: default;
}
.agent-lp-hero__contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.agent-lp-hero__contact-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.agent-lp-hero__contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}
.agent-lp-hero__contact-value {
  font-size: 15px;
  font-weight: 700;
  word-break: break-word;
}
.agent-lp-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.agent-lp-hero__actions .service-hero__call-btn,
.agent-lp-hero__actions .service-hero__order-btn {
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.agent-lp-hero__actions .service-hero__call-btn {
  background: #fff;
  color: var(--primary);
}
.agent-lp-hero__actions .service-hero__order-btn {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.agent-lp-hero__actions .service-hero__order-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.agent-lp-hero__panel-note {
  font-size: 13px;
  opacity: 0.78;
  text-align: center;
  line-height: 1.4;
}
.agent-lp__stats--hero {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
}
.agent-lp__about {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(52, 93, 160, 0.06);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 800px) {
.agent-lp__about {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }
}
.agent-lp__about-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agent-lp__life-photo {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background:
    linear-gradient(160deg, var(--primary-ultra-pale) 0%, var(--bg) 100%);
  border: 1.5px dashed rgba(52, 93, 160, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px 14px;
  color: var(--primary);
}
.agent-lp__life-photo-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(52, 93, 160, 0.08);
}
.agent-lp__life-photo-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.agent-lp__life-photo-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
  max-width: 140px;
}
.agent-lp__life-photo--has-img {
  padding: 0;
  border: 0;
  background: #dce3ef;
  overflow: hidden;
}
.agent-lp__life-photo--has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.ya-leave-review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fc0;
  color: #000;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 14px rgba(255, 204, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.ya-leave-review:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.45);
  filter: brightness(1.02);
  color: #000;
}
.ya-leave-review__row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ya-leave-review__star {
  flex-shrink: 0;
}
.ya-leave-review__text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.ya-leave-review__maps {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
}
.agent-lp__about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.agent-lp__bio-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.agent-lp__bio-text p {
  margin: 0;
}
.agent-lp__skills-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.agent-lp__skills-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 8px;
}
.agent-lp__skill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 8px 14px;
  border-radius: 50px;
  line-height: 1.3;
}
.agent-lp__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 800px) {
.agent-lp__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.agent-lp__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 16px 12px;
  border-radius: 16px;
  background: var(--primary-ultra-pale);
}
.agent-lp__stats--hero .agent-lp__stat {
  background: var(--bg);
  border: 1px solid var(--card-border);
}
.agent-lp__stat-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.agent-lp__stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-transform: lowercase;
}
.agent-lp__stat-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.3;
}
.agent-lp__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}
.agent-lp__steps--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
.agent-lp__steps,
  .agent-lp__steps--3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) and (min-width: 521px) {
.agent-lp__steps:not(.agent-lp__steps--3) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.agent-lp__step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(52, 93, 160, 0.06);
  position: relative;
  overflow: hidden;
}
.agent-lp__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent-light));
}
.agent-lp__step-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-lp__step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.agent-lp__step-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.agent-lp__reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.agent-lp__reviews-head .agent-lp__title {
  margin: 0;
}
.agent-lp__reviews-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.agent-lp__reviews-score-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.agent-lp__reviews-score-stars {
  display: flex;
  gap: 2px;
  color: #fc0;
}
.agent-lp__reviews-score-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.ya-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
.ya-reviews {
    grid-template-columns: 1fr;
  }
}
.ya-review {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.ya-review__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ya-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #eee;
}
.ya-review__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.ya-review__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ya-review__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.ya-review__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fc3f1d;
  background: rgba(252, 63, 29, 0.08);
  padding: 2px 8px;
  border-radius: 50px;
}
.ya-review__badge svg {
  flex-shrink: 0;
}
.ya-review__stars {
  display: flex;
  gap: 2px;
  color: #fc0;
}
.ya-review__date {
  font-size: 12px;
  color: var(--muted);
}
.ya-review__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.agent-lp__reviews-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.ya-leave-review--inline {
  flex-direction: row;
  padding: 12px 18px;
}
.ya-leave-review--inline .ya-leave-review__maps {
  display: none;
}
.agent-lp__zones {
  position: relative;
  padding: 36px 28px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(74, 123, 200, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(52, 93, 160, 0.45) 0%, transparent 50%),
    linear-gradient(145deg, #1e3a6e 0%, #345da0 55%, #2a4d8c 100%);
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 640px) {
.agent-lp__zones {
    padding: 28px 18px;
    border-radius: 20px;
  }
}
.agent-lp__zones-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.agent-lp__zones-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 12px;
}
.agent-lp__zones-title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 10px;
}
.agent-lp__zones-title em {
  font-style: normal;
  color: #c5d8ff;
}
.agent-lp__zones-lead {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.88;
  max-width: 720px;
}
.agent-lp__zones-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agent-lp__zones-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}
.agent-lp__zones-districts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.agent-lp__zones-district {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.agent-lp__zones-district-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fc0;
  flex-shrink: 0;
}
.agent-lp__zones-district-name {
  font-size: 14px;
  font-weight: 700;
}
.agent-lp__zones-district-hint {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
}
.agent-lp__zones-places {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 1000px) {
.agent-lp__zones-places {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
.agent-lp__zones-places {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.agent-lp__zones-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
.agent-lp__zones-places {
    grid-template-columns: 1fr;
  }
}
.agent-lp__zones-place {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  color: #fff;
  min-width: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.agent-lp__zones-place:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  color: #fff;
}
.agent-lp__zones-place-label {
  font-size: 15px;
  font-weight: 800;
}
.agent-lp__zones-place-desc {
  font-size: 12px;
  opacity: 0.72;
  line-height: 1.35;
}
.agent-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.agent-case-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(52, 93, 160, 0.08) 0%, transparent 55%),
    var(--card-bg);
  box-shadow: 0 4px 16px rgba(52, 93, 160, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agent-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(52, 93, 160, 0.12);
}
.agent-case-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.agent-case-card__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.agent-case-card__agent {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
}
.agent-case-card__agent a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.agent-case-card__agent a:hover {
  text-decoration: underline;
}
.agent-case-card__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.agent-case-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}
.agent-case-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--card-border);
}
.agent-case-card__total-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.agent-case-card__total-value {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.agent-case-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.agent-case-card__btn:hover {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 768px) {
.agent-cases-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
.agent-case-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
.agent-case-card__btn {
    width: 100%;
  }
}
.staff-agents {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.staff-agent {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.85fr);
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(52, 93, 160, 0.08);
  position: relative;
}
.staff-agent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent-light));
  z-index: 1;
}
@media (max-width: 900px) {
.staff-agent {
    grid-template-columns: 1fr;
  }
}
.staff-agent__main {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 22px 22px 20px;
  align-items: start;
}
@media (max-width: 560px) {
.staff-agent__main {
    grid-template-columns: 88px 1fr;
    gap: 14px;
    padding: 16px;
  }
}
.staff-agent__photo-wrap {
  width: 120px;
  height: 148px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--primary-ultra-pale, #eef2fa);
  border: 1px solid var(--card-border);
  box-shadow: 0 8px 20px rgba(52, 93, 160, 0.12);
}
@media (max-width: 560px) {
.staff-agent__photo-wrap {
    width: 88px;
    height: 108px;
    border-radius: 12px;
  }
}
.staff-agent__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.staff-agent__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.staff-agent__badge,
.staff-agent__accred {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}
.staff-agent__badge {
  background: var(--primary-pale, #dbe4f3);
  color: var(--primary);
}
.staff-agent__accred {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
}
.staff-agent__name {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.staff-agent__lead {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 10px;
  max-width: 42em;
}
.staff-agent__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.staff-agent__areas li {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg, #f5f7fb);
  border: 1px solid var(--card-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.staff-agent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.staff-agent__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
}
.staff-agent__phone:hover {
  text-decoration: underline;
}
.staff-agent__profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(52, 93, 160, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.staff-agent__profile svg {
  stroke: currentColor;
}
.staff-agent__profile:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(52, 93, 160, 0.38);
}
.staff-agent__cases {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(52, 93, 160, 0.06) 0%, transparent 55%),
    var(--bg, #f5f7fb);
  border-left: 1px solid var(--card-border);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 900px) {
.staff-agent__cases {
    border-left: none;
    border-top: 1px solid var(--card-border);
  }
}
.staff-agent__cases-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.staff-agent__cases-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #8a93a6);
}
.staff-agent__cases-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.staff-agent__cases-more:hover {
  text-decoration: underline;
}
.staff-mini-cases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.staff-mini-case {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}
.staff-mini-case__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.staff-mini-case__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.staff-mini-case__total {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.staff-mini-case__btn {
  flex-shrink: 0;
  padding: 7px 10px;
  border-radius: 9px;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.staff-mini-case__btn:hover {
  background: var(--primary);
  color: #fff;
}
.agent-case-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.agent-case-modal[hidden] {
  display: none !important;
}
.agent-case-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 50, 0.55);
  backdrop-filter: blur(6px);
}
.agent-case-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 28px 26px 24px;
  box-shadow: 0 24px 64px rgba(20, 30, 50, 0.28);
}
.agent-case-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.agent-case-modal__close:hover {
  color: var(--text);
}
.agent-case-modal__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.agent-case-modal__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
  padding-right: 36px;
}
.agent-case-modal__summary {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.agent-case-modal__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.agent-case-modal__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--card-border);
}
.agent-case-modal__list li:last-child {
  border-bottom: none;
}
.agent-case-modal__list-name {
  color: var(--text-secondary);
  line-height: 1.4;
}
.agent-case-modal__list-price {
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.agent-case-modal__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--primary-ultra-pale);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.agent-case-modal__total strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.agent-lp__author-articles {
  gap: 24px;
}
.agent-lp__author-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-ultra-pale) 0%, var(--card-bg) 100%);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 4px 16px rgba(52, 93, 160, 0.06);
}
@media (max-width: 640px) {
.agent-lp__author-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
.agent-lp__author-card-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(52, 93, 160, 0.16);
  background: var(--primary-pale);
}
.agent-lp__author-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.agent-lp__author-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(52, 93, 160, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.agent-lp__author-card .agent-lp__title {
  margin-bottom: 8px;
}
.agent-lp__author-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 720px;
}
.agent-lp__articles-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 800px) {
.agent-lp__articles-featured {
    grid-template-columns: 1fr;
  }
}
.agent-lp__articles-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
.agent-lp__articles-secondary {
    grid-template-columns: 1fr;
  }
}
.agent-article-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(52, 93, 160, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agent-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(52, 93, 160, 0.12);
}
.agent-article-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--primary-ultra-pale);
  overflow: hidden;
}
.agent-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.agent-article-card__fallback {
  object-fit: contain !important;
  padding: 28px;
  opacity: 0.55;
}
.agent-article-card__cat {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  padding: 4px 10px;
  border-radius: 50px;
}
.agent-article-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 16px;
  flex: 1;
}
.agent-article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.agent-article-card__by {
  color: var(--primary);
}
.agent-article-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
}
.agent-article-card--compact .agent-article-card__title {
  font-size: 15px;
}
.agent-article-card__excerpt {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.agent-article-card__read {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.agent-lp__articles-footer {
  display: flex;
  justify-content: center;
}
.agent-lp__articles-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(52, 93, 160, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.agent-lp__articles-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(52, 93, 160, 0.34);
  color: #fff;
}
.agent-lp__faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.agent-lp__faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 2px 10px rgba(52, 93, 160, 0.05);
  overflow: hidden;
}
.agent-lp__faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  list-style: none;
}
.agent-lp__faq-q::-webkit-details-marker {
  display: none;
}
.agent-lp__faq-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-lp__faq-a {
  padding: 0 18px 18px 64px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}
@media (max-width: 640px) {
.agent-lp__faq-a {
    padding-left: 18px;
  }
}
.agent-lp__reviews-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(52, 93, 160, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.agent-lp__reviews-all:hover {
  transform: translateY(-2px);
  border-color: var(--primary-pale);
  box-shadow: 0 8px 22px rgba(52, 93, 160, 0.12);
}
.agent-lp__articles-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.agent-lp__articles-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}
.agent-lp__articles-all:hover {
  color: var(--primary-light);
}
.agent-lp__articles-grid {
  margin-top: 4px;
}
.agent-lp__article-call.article-call {
  width: 100%;
  box-sizing: border-box;
}
.agent-lp__article-call .article-call__text {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.agent-lp .inner-page__fullwidth .order-form,
.agent-lp .inner-page__fullwidth .warn-alert {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.agent-lp__faq .faq-section {
  padding: 0;
}
.agent-lp__faq .faq-section__inner {
  max-width: none;
  width: 100%;
}
@media (max-width: 640px) {
.agent-lp.inner-page__stack {
    gap: 36px;
  }
.agent-lp__title {
    font-size: 22px;
  }
.agent-lp__stat-value {
    font-size: 26px;
  }
.agent-lp__reviews-score {
    align-items: flex-start;
  }
.agent-lp__article-call.article-call {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
img.agcard__avatar {
  object-fit: cover;
}
:root {
  --primary: #345da0;
  --primary-light: #4a7bc8;
  --primary-pale: #e8eff8;
  --primary-ultra-pale: #f0f5fc;
  --accent: #c24036;
  --accent-light: #e85a4f;
  --accent-pale: #fdf0ef;
  --text: #1a1a2e;
  --text-secondary: #4b5563;
  --muted: #9ca3af;
  --bg: #f7f8fc;
  --card-bg: #ffffff;
  --card-border: rgba(52, 93, 160, 0.08);
  --font: "Roboto", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
.order-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  max-width: 720px;
  box-shadow: 0 8px 36px rgba(52, 93, 160, 0.07);
}
.order-form__heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.order-form__icon {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}
.order-form__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.order-form__subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.order-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 540px) {
.order-form__fields {
    grid-template-columns: 1fr;
  }
}
.order-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.order-form__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.order-form__required {
  color: var(--accent);
}
.order-form__input {
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font);
  font-size: 14.5px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.order-form__input::placeholder {
  color: var(--muted);
}
.order-form__input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(74, 123, 200, 0.14);
  background: #fff;
}
.order-form__consent {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.order-form__consent-link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.order-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(194, 64, 54, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.order-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 64, 54, 0.36);
}
.order-form__submit:active {
  transform: translateY(0);
}
.warn-alert {
  background: var(--accent-pale);
  border: 1.5px solid rgba(194, 64, 54, 0.18);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 20px 24px;
  max-width: 780px;
}
.warn-alert__inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.warn-alert__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(194, 64, 54, 0.10);
  border-radius: 12px;
  color: var(--accent);
}
.warn-alert__heading {
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 8px;
}
.warn-alert__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.warn-alert__law {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.warn-alert__law strong {
  color: var(--text-secondary);
}
p+.warn-alert {
  margin-top: 22px;
  margin-bottom: 22px;
}
.inner-page {
  padding: 28px 0 0;
  background: var(--bg);
}
.inner-page__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.inner-page__wrap > .inner-page__wrap {
  padding-left: 0;
  padding-right: 0;
}
.inner-page__breadcrumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.inner-page__breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}
.inner-page__breadcrumb a:hover {
  text-decoration: underline;
}
.inner-page__breadcrumb-sep {
  margin: 0 6px;
  color: var(--muted);
}
.service-hero__call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(194, 64, 54, .35);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-hero__call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(194, 64, 54, .45);
}
.service-hero__order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  transition: background .25s var(--ease), transform .25s var(--ease);
  cursor: pointer;
  font-family: var(--font, 'Roboto', sans-serif);
}
.service-hero__order-btn:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}
.sgal {
  margin: 32px 0 36px;
  scroll-margin-top: 24px;
}
.sgal:last-child {
  margin-bottom: 0;
}
.sgal__title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.sgal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.sgal__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 480px) {
.sgal__grid {
    grid-template-columns: 1fr;
  }
.sgal__grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sgal__item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--text);
  cursor: pointer;
}
.sgal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease);
}
.sgal__item:hover img {
  transform: scale(1.05);
}
.sgal__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 27, 51, .45);
  color: #fff;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.sgal__item:hover .sgal__zoom {
  opacity: 1;
}
.sgal__all {
  margin-left: auto;
  margin-top: 16px;
  width: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(52, 93, 160, .45);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  border: none;
  font-family: var(--font);
}
.sgal__all:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(52, 93, 160, .55);
}
.sgal__item--all {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(52, 93, 160, .35);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.sgal__item--all:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(52, 93, 160, .55);
}
.sgal__all-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .95;
}
.sgal__all-text {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.inner-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
@media (min-width: 961px) {
.inner-page__sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(52, 93, 160, .15) transparent;
  }
.inner-page__sidebar::-webkit-scrollbar {
    width: 4px;
  }
.inner-page__sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
.inner-page__sidebar::-webkit-scrollbar-thumb {
    background: rgba(52, 93, 160, .18);
    border-radius: 4px;
  }
.inner-page__sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 93, 160, .3);
  }
}
@media (max-width: 960px) {
.inner-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.inner-page__sidebar .sidebar {
  max-width: none;
}
.inner-page__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.inner-page__fullwidth {
  width: 100%;
}
.inner-page__fullwidth .order-form,
.inner-page__fullwidth .warn-alert {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}
.inner-page__blocks {
  margin-top: 16px;
  padding-bottom: 48px;
}
.inner-page__blocks .faq-section__inner,
.inner-page__blocks .articles-section__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.about-hero {
  margin: 0 0 28px;
}
.about-hero__banner {
  position: relative;
  background: linear-gradient(135deg, #0d1b33 0%, #1a2d4d 40%, #263f66 100%);
  border-radius: 20px;
  padding: 48px 36px 44px;
  overflow: hidden;
  color: #fff;
}
@media (min-width: 720px) {
.about-hero__banner {
    padding: 56px 48px 48px;
  }
}
.about-hero__watermark {
  position: absolute;
  right: -20px;
  bottom: -24px;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, .035);
  pointer-events: none;
  user-select: none;
}
.about-hero__svg {
  position: absolute;
  pointer-events: none;
  color: rgba(255, 255, 255, 1);
}
.about-hero__svg--rings {
  width: 240px;
  height: 240px;
  top: -40px;
  right: 60px;
}
.about-hero__svg--cross {
  width: 80px;
  height: 80px;
  bottom: 30px;
  left: 40px;
}
@media (max-width: 640px) {
.about-hero__svg--rings {
    width: 140px;
    height: 140px;
    right: 10px;
    top: -20px;
  }
.about-hero__svg--cross {
    display: none;
  }
.about-hero {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.about-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
}
.about-hero__crumbs a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .25s;
}
.about-hero__crumbs a:hover {
  color: #fff;
}
.about-hero__crumbs span {
  color: rgba(255, 255, 255, .4);
}
.about-hero__badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50px;
  padding: 5px 16px;
}
.about-hero__badge svg {
  flex-shrink: 0;
  opacity: .7;
}
.about-hero__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #4ade80;
}
.about-hero__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .5);
  animation: about-pulse 2s infinite;
}
@keyframes about-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}
.about-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.about-hero__title em {
  font-style: normal;
  font-weight: 300;
  opacity: .85;
}
.about-hero__lead {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin-bottom: 28px;
}
.about-hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.about-hero__call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(52, 93, 160, .35);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
.about-hero__call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 93, 160, .45);
}
.about-hero__email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  transition: background .25s, border-color .25s, color .25s;
}
.about-hero__email-btn:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}
.about-hero__max-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  background: linear-gradient(135deg, var(--max-blue) 0%, color(srgb 0.26 0.22 0.79 / 0.7) 48%, var(--max-violet-light) 100%);
  border-radius: 12px;
  transition: transform .25s, box-shadow .25s;
}
.about-hero__max-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.about-hero__max-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.38);
}
.inner-page__stack + .about-map-full {
  margin-top: 4rem;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 36px;
}
@media (max-width: 800px) {
.svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
.svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(52, 93, 160, 0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease, border-color 0.3s;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(52, 93, 160, 0.13);
  border-color: rgba(52, 93, 160, 0.15);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-card--free::before {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}
.svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-pale);
  color: var(--primary);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.svc-card--free .svc-card__icon {
  background: #dcfce7;
  color: #16a34a;
}
.svc-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 8px;
  transition: color 0.3s;
}
.svc-card:hover .svc-card__title {
  color: var(--primary);
}
.svc-card--free:hover .svc-card__title {
  color: #16a34a;
}
.svc-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 16px;
  flex: 1;
}
.svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.svc-card__price {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.svc-card__price--free {
  color: #16a34a;
  background: #dcfce7;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  transition: color 0.2s, gap 0.2s;
}
.svc-card:hover .svc-card__link {
  gap: 8px;
}
.svc-card--free .svc-card__link {
  color: #16a34a;
}
.svc-card__link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-grid-section__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.25;
}
.svc-grid-section__title em {
  font-style: normal;
  color: var(--primary);
}
.svc-grid-section__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 0 24px;
}
.page-template-template-gallery .page-extract-inner {
  position: relative;
  background: radial-gradient(ellipse 75% 55% at 15% 0%, rgba(52, 93, 160, 0.06) 0%, transparent 55%), radial-gradient(ellipse 50% 45% at 95% 100%, rgba(194, 64, 54, 0.04) 0%, transparent 50%), var(--bg);
}
.page-template-template-gallery .page-extract-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23345da0' stroke-opacity='0.025' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.page-template-template-gallery .inner-page {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

/* Keep cover-images filling the frame; do not let generic img height:auto win. */
.sgal__item img,
.agent-article-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}
