/* =========================
   обо мне
========================= */
.aboutX{
  padding:40px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

.aboutX-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* HERO */
.aboutX-hero{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap:38px;
  align-items:center;
  margin-bottom:44px;
}

/* Kicker pill (обводка + премиум) */
.aboutX-kickerPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  color:#5b5b5b;
  margin-bottom:14px;
}

.aboutX-kickerDot{
  width:8px; height:8px;
  border-radius:50%;
  background: #f3c300;
  box-shadow: 0 0 0 4px rgba(243,195,0,.18);
}

/* TITLE — меньше + слева */
.aboutX-title{
  font-size:34px;        /* было 40 — уменьшили */
  line-height:1.12;
  font-weight:900;
  margin:0 0 14px;
  text-align:left;
  color:#121212;
}

/* LEAD — выравнивание по ширине */
.aboutX-lead{
  font-size:16px;
  line-height:1.65;
  color:#555;
  margin:0 0 18px;
  max-width:560px;
  text-align:justify;
  text-justify:inter-word;
}

/* BADGES — премиум, не «вырви глаз» */
.aboutX-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.aboutX-badge{
  position:relative;
  background: rgba(255,255,255,.82);
  border:1px solid rgba(0,0,0,.10);
  padding:10px 14px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:800;
  color:#2a2a2a;
  box-shadow: 0 14px 28px rgba(0,0,0,.07);
  backdrop-filter: blur(6px);
}

.aboutX-badge--accent{
  border-color: rgba(243,195,0,.45);
  box-shadow:
    0 14px 28px rgba(0,0,0,.07),
    0 10px 22px rgba(243,195,0,.14);
}

/* PHOTO — компактнее и без кринжа */
.aboutX-photo{
  display:flex;
  justify-content:center;
  align-items:center;
}

.aboutX-photo img{
  width:100%;
  max-width:320px;        /* компактнее */
  max-height:360px;       /* чтобы не тянулось вниз */
  height:auto;
  object-fit:contain;     /* плечо не обрежется */
  border-radius:26px;
  background: rgba(255,255,255,.7);
  padding:12px;           /* рамка «как карточка» */
  box-shadow: 0 28px 60px rgba(0,0,0,.14);
}

/* CONTENT */
.aboutX-content{
  max-width:860px;
}

/* HEADERS — премиум (линия + вес) */
.aboutX-hgroup{
  display:flex;
  align-items:center;
  gap:14px;
  margin:0 0 12px;
}

.aboutX-h2{
  font-size:22px;
  font-weight:950;
  margin:0;
  color:#141414;
  letter-spacing:.01em;
}

.aboutX-hline{
  height:1px;
  flex:1;
  background: linear-gradient(90deg, rgba(0,0,0,.14), rgba(0,0,0,0));
}

/* TEXT blocks */
.aboutX-block{
  margin-bottom:34px;
}

/* Lists */
.aboutX-list{
  list-style:none;
  padding:0;
  margin:0;
}

.aboutX-list li{
  position:relative;
  padding-left:22px;
  margin-bottom:10px;
  color:#555;
  line-height:1.65;
}

.aboutX-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#f3c300;
  box-shadow: 0 0 0 4px rgba(243,195,0,.14);
}

/* Professional competencies text — justify */
.aboutX-text{
  color:#555;
  line-height:1.75;
  text-align:justify;
  text-justify:inter-word;
  margin:0;
}

/* FORMAT WORK — интереснее */
.aboutX-format{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}

.aboutX-formatItem{
  border-radius:18px;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.07);
  padding:16px 16px 14px;
  display:flex;
  gap:12px;
}

.aboutX-formatIcon{
  width:12px;
  height:12px;
  margin-top:6px;
  border-radius:50%;
  background:#f3c300;
  box-shadow: 0 0 0 5px rgba(243,195,0,.14);
  flex:0 0 12px;
}

.aboutX-formatTitle{
  font-weight:900;
  color:#222;
  margin-bottom:6px;
}

.aboutX-formatText{
  color:#585858;
  line-height:1.55;
  font-size:14.5px;
}

/* ===== Premium animation (initial state) ===== */
[data-reveal]{
  opacity:0;
  transform: translateY(14px) scale(.985);
transition:
    opacity .55s ease,
    transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.is-in{
  opacity:1;
  transform: translateY(0) scale(1);
}

/* Hover micro-interactions */
.aboutX-badge:hover,
.aboutX-formatItem:hover{
  transform: translateY(-2px);
  transition: transform .2s ease;
}
.aboutX-req{
  /* единый “премиум” блок */
  margin-top: 6px;
}

/* вводный текст */
.aboutX-req__lead{
  margin: 0 0 12px;
  color: #5a5a5a;
}

/* список как премиум-карточка */
.aboutX-req__list{
  margin: 0;
  padding: 16px 16px 14px;
  list-style: none;

  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);

  box-shadow:
    0 18px 45px rgba(0,0,0,.08),
    0 1px 0 rgba(255,255,255,.85) inset;

  position: relative;
  overflow: hidden;
}

/* лёгкая “подсветка” сверху (очень аккуратно) */
.aboutX-req__list::before{
  content:"";
  position:absolute;
  inset:-40% -30% auto -30%;
  height: 160px;
  background: radial-gradient(closest-side, rgba(243,195,0,.14), transparent 70%);
  pointer-events:none;
}

/* пункты */
.aboutX-req__list li{
  position: relative;
  padding: 10px 12px 10px 28px;
  margin: 0;
  color: #4f4f4f;
  line-height: 1.6;

  border-radius: 14px;
  transition: transform .18s ease, background .18s ease;
}

/* маркер “премиум-точка” */
.aboutX-req__list li::before{
  content:"";
  position:absolute;
  left: 10px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f3c300;
  box-shadow: 0 0 0 5px rgba(243,195,0,.12);
}

/* hover — очень мягко */
@media (hover:hover){
  .aboutX-req__list li:hover{
    background: rgba(255,255,255,.65);
    transform: translateY(-1px);
  }
}

/* скрытые элементы (управляются JS) */
.aboutX-req__list li.is-hidden{
  display: none;
}

/* кнопка “читать ещё” — аккуратная, не яркая */
.aboutX-req__more{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.10);
  color: #1f1f1f;

  font-weight: 900;
  font-size: 13.5px;
  cursor: pointer;

  box-shadow: 0 14px 28px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* стрелочка */
.aboutX-req__more::after{
  content:"";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s ease;
  opacity: .75;
}

.aboutX-req__more:hover{
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.aboutX-req__more[aria-expanded="true"]::after{
  transform: rotate(-135deg);
}

/* на мобиле — чуть плотнее */
@media (max-width: 980px){
  .aboutX-req__list{
    padding: 14px 12px 12px;
    border-radius: 20px;
  }
  .aboutX-req__list li{
    padding: 9px 10px 9px 26px;
  }
  .aboutX-req__list li::before{
    left: 8px;
    top: 16px;
  }
}

/* MOBILE */
@media (max-width: 980px){
  .aboutX-hero{ grid-template-columns:1fr; gap:22px; }

  .aboutX-photo img{ max-width:280px; max-height:320px; }

  .aboutX-format{ grid-template-columns:1fr; }

  .aboutX-lead{
    text-align:left;
  }

  .aboutX-text{
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    overflow-wrap: anywhere;
  }
}
/* =========================
   С какими проблемами ко мне приходят
========================= */
.issuesX{
  --bg1:#fbfbfc;
  --bg2:#f2f5f8;

  --card:#ffffff;
  --card2:#fbfcfe;

  --text:#1c1f24;   /* темнее — лучше читается */
  --muted:#5c6672;

  --line:rgba(18, 23, 31, .10);
  --shadow: 0 18px 40px rgba(16, 24, 40, .08);

  --accent:#e6c15a;          /* спокойный золотистый */
  --accent2:#2b6cb0;         /* холодный медицинский (синий) */
  --accentSoft:rgba(230,193,90,.22);

  padding: 44px 0 70px;
  background: radial-gradient(900px 520px at 65% 0%, rgba(230,193,90,.12), rgba(230,193,90,0) 60%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
  color: var(--text);
}

/* контейнер */
.issuesX-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* заголовок */
.issuesX-title{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 32px;
  line-height: 1.12;
}

/* подзаголовок — меньше отступ + читаемость на мобиле */
.issuesX-sub{
  margin: 0 0 18px;          /* уменьшили расстояние */
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 860px;
  text-align: left;
}

/* сетка карточек */
.issuesX-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* карточка */
.issuesX-card{
  position: relative;
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 16px 16px 14px;
}

/* акцентная линия слева */
.issuesX-card::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(230,193,90,.35));
}

/* верх карточки */
.issuesX-cardTop{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(18,23,31,.08);
}

/* иконка (SVG) — без шрифтов, без "?" */
.issuesX-ico{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: rgba(43,108,176,.08);
  border: 1px solid rgba(43,108,176,.14);
  flex: 0 0 28px;
  box-shadow: 0 10px 20px rgba(16,24,40,.06);
}

/* покраска SVG */
.issuesX-ico svg{
  width: 16px;
  height: 16px;
  stroke: var(--accent2);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}

/* заголовок карточки */
.issuesX-h2{
  margin: 0;
  font-weight: 900;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* список */
.issuesX-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

/* пункты — читаемо */
.issuesX-list li{
  position: relative;
  padding-left: 18px;
  color: #2a2f36;            /* темнее, чем раньше */
  line-height: 1.5;
  font-size: 14.8px;
}

/* маркер */
.issuesX-list li::before{
  content:"";
  position:absolute;
  left:0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accentSoft);
}

/* "Читать ещё" */
.issuesX-more{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: 1px solid rgba(18,23,31,.10);
  background: rgba(255,255,255,.75);
  border-radius: 999px;
  padding: 10px 12px;

  color: #2a2f36;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;

  box-shadow: 0 12px 24px rgba(16,24,40,.06);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.issuesX-more:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(16,24,40,.10);
  background: rgba(255,255,255,.92);
}

/* collapsed state (скрываем лишние элементы) */
.issuesX-toggle__list.is-collapsed li:nth-child(n + 7){
  display: none;
}

/* лёгкая "премиум" реакция карточки */
@media (hover:hover){
  .issuesX-card:hover{
    box-shadow: 0 22px 54px rgba(16,24,40,.12);
    border-color: rgba(18,23,31,.14);
  }
}
.issuesX-ico{
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(43,108,176,.14), rgba(43,108,176,.06) 55%, rgba(43,108,176,.04));
}

.issuesX-ico svg{
  stroke: #2b6cb0;
  opacity: .98;
}

/* мобильная типографика */
@media (max-width: 980px){
  .issuesX{
    padding: 26px 0 54px;
  }

  .issuesX-title{
font-size: 24px;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .issuesX-sub{
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 14px; /* меньше расстояние на телефоне */
  }

  .issuesX-card{
    border-radius: 16px;
    padding: 14px 14px 12px;
  }

  .issuesX-h2{
    font-size: 16px;
  }

  .issuesX-list li{
    font-size: 14.4px;
  }
}
/* =========================
   образование
========================= */
.eduX{
  --bg1:#ffffff;
  --bg2:#f4f6f8;

  --cardBg: rgba(255,255,255,.94);
  --cardBorder: rgba(0,0,0,.10);

  --shadow: 0 18px 50px rgba(0,0,0,.08);
  --shadowHover: 0 26px 70px rgba(0,0,0,.12);

  --text:#141414;
  --muted:#3c3c3c;

  --gold:#d6b56a;                /* более “статусный” золотой */
  --goldSoft: rgba(214,181,106,.22);

  padding: 40px 0 70px;
  background:
    radial-gradient(900px 260px at 18% 0%, rgba(214,181,106,.10), transparent 60%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
}

.eduX-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO ===== */
.eduX-title{
  font-size: 34px;
  line-height: 1.12;
  font-weight: 950;
  margin: 0 0 12px;
  color: var(--text);
}

.eduX-lead{
  margin: 0 0 18px;
  max-width: 860px;
  color:#1e1e1e;
  font-size:16px;
  line-height:1.8;
  font-weight:520;
  text-align:justify;
  text-justify:inter-word;
}

/* ===== ONE COLUMN ===== */
.eduX-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* ===== CARD ===== */
.eduX-card{
  background: var(--cardBg);
  border: 1px solid var(--cardBorder);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px 22px 12px;
  position: relative;
  overflow: hidden;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

/* легкий “шелк” внутри */
.eduX-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(600px 160px at 14% 0%, rgba(214,181,106,.12), transparent 55%),
    radial-gradient(420px 140px at 90% 20%, rgba(0,0,0,.04), transparent 60%);
  pointer-events:none;
  opacity:.9;
}

.eduX-cardTop,
.eduX-timeline,
.eduX-note{
  position: relative;
  z-index: 1;
}

.eduX-cardTop{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 14px;
}

.eduX-h2{
  font-size: 20px;
  font-weight: 950;
  margin: 0;
  color: var(--text);
  letter-spacing: .01em;
}

.eduX-ico{
  width:38px;
  height:38px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  display:grid;
  place-items:center;
  box-shadow: 0 12px 24px rgba(0,0,0,.06);
}

.eduX-ico svg{
  width:20px;
  height:20px;
  fill: none;
  stroke: #2a2a2a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== TIMELINE ===== */
.eduX-timeline{
  list-style:none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* линия тоньше и почти невидимая */
.eduX-timeline::before{
  content:"";
  position:absolute;
  left:18px;
  top:0;
  bottom:0;
  width:1px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.08),
    rgba(0,0,0,.04),
    rgba(0,0,0,.08)
  );
  opacity:.55; /* вот тут делаем “дороже” */
}

.eduX-item{
  position: relative;
  padding: 16px 0 16px 50px;
  border-top: 1px solid rgba(0,0,0,.05);
}

.eduX-item:first-child{ border-top: 0; }

/* точка — более “ювелирная” */
.eduX-item::before{
  content:"";
  position:absolute;
  left:12px;
  top:24px;
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--gold);
  box-shadow:
    0 0 0 5px var(--goldSoft),
    0 10px 22px rgba(0,0,0,.10);
  transform: translateZ(0);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

/* мягкое свечение на hover */
.eduX-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadowHover);
  border-color: rgba(214,181,106,.35);
}

.eduX-card:hover .eduX-item::before{
  box-shadow:
    0 0 0 7px rgba(214,181,106,.20),
    0 14px 28px rgba(0,0,0,.14);
  filter: saturate(1.1);
}

/* ===== YEAR — просто текст (без капсулы) ===== */
.eduX-year{
  display:block;
  margin-bottom:6px;
  font-weight: 950;
  font-size: 15px;
  letter-spacing:.04em;
  color:#111;
  white-space:nowrap;     /* диапазоны 2014–2018 не ломаются */
}

/* ===== BODY ===== */
.eduX-body{
  color: var(--muted);
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

/* note */
.eduX-note{
  margin: 2px 0 12px;
  color: #1b1b1b;
  line-height: 1.7;
}
/* link */
.eduX-link{ margin-top: 8px; }

.eduX-link a{
  color: #1d4ed8;
  text-decoration: none;
  font-weight: 850;
  border-bottom: 1px dashed rgba(29,78,216,.45);
}

.eduX-link a:hover{
  border-bottom-style: solid;
}
.eduX-kickerPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:900;
  color:#5a5a5a;
  margin: 0 0 14px;
}

.eduX-kickerDot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(214,181,106,.22);
  flex:0 0 8px;
}

.eduX-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}

.eduX-badge{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.86);
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  color:#1c1c1c;
  font-weight:900;
  font-size:13.5px;
  line-height:1.1;
}

.eduX-badge--accent{
  border-color: rgba(214,181,106,.55);
  box-shadow:
    0 14px 30px rgba(0,0,0,.08),
    0 10px 22px rgba(214,181,106,.16);
}

/* мобильная компоновка — чтобы не “уезжало” */
@media (max-width: 900px){
  .eduX-kickerPill{ max-width: 100%; }
  .eduX-badge{ font-size: 13px; padding: 10px 12px; }
}

/* ===== Mobile ===== */
@media (max-width: 900px){

  .eduX-title{ font-size: 28px; }

  .eduX-lead,
  .eduX-body{
    text-align:left; /* на мобиле justify часто “рваный” */
  }

  .eduX-item{ padding-left: 44px; }

  .eduX-timeline::before{ left:14px; }

  .eduX-item::before{ left:8px; }
}
/* =========================
   контакты
========================= */
.contactX{
  padding: 40px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

.contactX-wrap{
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.contactX-hero{
  margin-bottom: 18px;
}

.contactX-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:900;
  color:#5b5b5b;
  margin-bottom:14px;
}

.contactX-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:#f3c300;
  box-shadow: 0 0 0 4px rgba(243,195,0,.18);
}

.contactX-title{
  font-size:42px;
  line-height:1.08;
  font-weight:950;
  margin:0 0 14px;
  color:#121212;
}

.contactX-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 0 0 22px;
}

.contactX-chip{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.82);
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  font-weight:900;
  color:#1f1f1f;
}

/* CARDS (one column) */
.contactX-card{
  position:relative;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 22px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 46px rgba(0,0,0,.07);
  margin-bottom: 14px;
  overflow:hidden;
}

.contactX-card:before{
  content:"";
  position:absolute;
  left:0; top:14px; bottom:14px;
  width:3px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(243,195,0,.95), rgba(243,195,0,.20));
  box-shadow: 0 10px 30px rgba(243,195,0,.12);
}

.contactX-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom: 12px;
}

.contactX-ico{
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.8);
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2a2a2a;
  flex:0 0 40px;
}

.contactX-ico svg{ width:20px; height:20px; }

.contactX-h2{
  font-size:20px;
  font-weight:950;
  margin:0;
  color:#141414;
}

/* ROWS */
.contactX-row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.contactX-row:first-of-type{ border-top: 0; padding-top: 0; }

.contactX-label{
  color:#6d6d6d;
  font-weight:800;
  font-size:13px;
  flex: 0 0 160px;
}

/* value that MUST fit */
.contactX-value{
  color:#151515;
  font-weight:950;
  font-size:16px;
  flex: 1 1 auto;
  min-width:0;
  text-align:right;
}

.contactX-value--muted{
  color:#555;
}

/* 핵: чтобы телефон/почта не переносились */
.contactX-value--fit{
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  font-variant-numeric: tabular-nums;
}

/* ADDRESS */
.contactX-address{
  padding: 2px 0 14px;
}

.contactX-addressMain{
  font-weight:950;
  color:#151515;
  font-size:16px;
  line-height:1.35;
}

.contactX-addressSub{
  margin-top:6px;
  color:#5f5f5f;
  font-weight:800;
  line-height:1.45;
}

/* MAP */
.contactX-mapWrap{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.06);
  background:#fff;
}

.contactX-map{
  width:100%;
  height:320px;
  display:block;
  filter: grayscale(1) saturate(0.2) contrast(1.06) brightness(0.99);
}

/* ===== MOBILE ===== */
@media (max-width: 680px){
  .contactX-title{ font-size:34px; }

  .contactX-label{
    flex: 0 0 120px;
    font-size:12.5px;
  }

  .contactX-value{
    font-size:15px;
  }

  /* если совсем узко — чуть ужмём цифры, но без переноса */
  .contactX-value--fit{
    font-size: 14.5px;
  }

  .contactX-map{ height:240px; }
}

/* =========================
   Documents page
========================= */
section.docsX {
  padding: 20px 0 50px;
}

/* контейнер */
section.docsX .docsX-wrap {
  width: 100%;
}

/* =========================
   HEADER
========================= */

section.docsX .docsX-head {
  margin-bottom: 34px;
}

section.docsX .docsX-title {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 14px;
}

section.docsX .docsX-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #5f5f5f;
  max-width: 760px;
}

/* =========================
   SECTION TITLES
========================= */

section.docsX .docsX-section-title {
  position: sticky;
  top: 10px;
  z-index: 5;

  display: inline-flex;
  align-items: center;

  padding: 10px 16px;
  margin-top: 38px;
  margin-bottom: 16px;

  border-radius: 999px;

  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(0,0,0,0.06);

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #111;

  box-shadow:
    0 4px 18px rgba(0,0,0,0.04);
}

/* =========================
   LIST
========================= */

section.docsX .docsX-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================
   CARD
========================= */

section.docsX .docsX-row {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 14px 16px;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96),
      rgba(255,255,255,0.92)
    );

  border: 1px solid rgba(0,0,0,0.06);

  overflow: hidden;

  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

/* glow */
section.docsX .docsX-row::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      rgba(236,239,31,0.12),
      transparent 45%
    );

  opacity: 0;
  transition: opacity .25s ease;
}

section.docsX .docsX-row:hover::before {
  opacity: 1;
}

/* hover */
section.docsX .docsX-row:hover {
  transform: translateY(-2px);

  border-color: rgba(236,239,31,0.45);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    0 2px 10px rgba(236,239,31,0.08);
}

/* =========================
   LEFT SIDE
========================= */

section.docsX .docsX-main {
  display: flex;
  align-items: center;
  gap: 14px;

  min-width: 0;
}

/* =========================
   ICON
========================= */

section.docsX .docsX-icon {
  flex-shrink: 0;

  width: 42px;
  height: 42px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  background:
    linear-gradient(
      180deg,
      #fafafa,
      #f2f2f2
    );

  border: 1px solid rgba(0,0,0,0.04);
}

/* =========================
   TEXT
========================= */

section.docsX .docsX-info {
  min-width: 0;
}

section.docsX .docsX-name {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #111;

  margin-bottom: 4px;
}

section.docsX .docsX-date {
  font-size: 13px;
  line-height: 1.45;
  color: #777;
}

/* =========================
   ACTIONS
========================= */

section.docsX .docsX-actions {
  display: flex;
  align-items: center;
  gap: 8px;

  flex-shrink: 0;
}

/* =========================
   BUTTONS
========================= */

section.docsX .docsX-action {
  width: 40px;
  height: 40px;

  border: none;
  outline: none;

  cursor: pointer;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 16px;
  color: #111;

  background:
    linear-gradient(
      180deg,
      #f7f7f7,
      #efefef
    );

  transition:
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

section.docsX .docsX-action:hover {
  transform: scale(1.06);

  background: #ecef1f;

  box-shadow:
    0 6px 18px rgba(236,239,31,0.35);
}

/* =========================
   PDF MODAL
========================= */

.pdf-modal {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;

  transition: .25s ease;

  z-index: 9999;
}

/* overlay */
.pdf-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.58);

  backdrop-filter: blur(8px);
}

/* content */
.pdf-modal-content {
  position: relative;

  width: min(980px, 94vw);
  height: min(92vh, 1000px);

  background: #fff;

  border-radius: 24px;

  overflow: hidden;

  transform: scale(.96);

  transition: .25s ease;

  box-shadow:
    0 40px 100px rgba(0,0,0,0.3);
}

/* active */
.pdf-modal.active {
  opacity: 1;
  pointer-events: all;
}

.pdf-modal.active .pdf-modal-content {
  transform: scale(1);
}

/* iframe */
.pdf-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* close */
.pdf-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 42px;
  height: 42px;

  border: none;
  cursor: pointer;

  border-radius: 14px;

  background: rgba(255,255,255,0.92);

  backdrop-filter: blur(10px);

  font-size: 18px;
  color: #111;

  z-index: 10;

  transition: .2s ease;
}

.pdf-close:hover {
  background: #ecef1f;
  transform: scale(1.05);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  section.docsX .docsX-title {
    font-size: 34px;
  }

  section.docsX .docsX-subtitle {
    font-size: 15px;
  }

  section.docsX .docsX-row {
    align-items: flex-start;
  }

  section.docsX .docsX-name {
    font-size: 15px;
  }

  section.docsX .docsX-actions {
    margin-left: auto;
  }

  .pdf-modal-content {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }

}
/* FIX кликабельности кнопок */
.docsX-row::before {
  pointer-events: none;
}

.docsX-actions {
  position: relative;
  z-index: 3;
}

@media (max-width: 560px) {

  section.docsX .docsX-row {
    flex-direction: column;
    align-items: flex-start;
  }

  section.docsX .docsX-actions {
    width: 100%;
    margin-top: 10px;
  }

}