/* разработка.бел — portal styles (rp-*) */
:root {
  --rp-bg: #f6f7fb;
  --rp-bg-2: #ffffff;
  --rp-elev: #ffffff;
  --rp-card: #ffffff;
  --rp-line: rgba(0,0,0,.10);
  --rp-text: #0b0b0d;
  --rp-muted: #4b4b56;
  --rp-dim: #6b6b75;
  --rp-accent: #5b8def;
  --rp-accent-2: #3dd6c6;
  --rp-grad: linear-gradient(135deg, #5b8def 0%, #3dd6c6 100%);
  --rp-radius: 14px;
  --rp-radius-sm: 10px;
  --rp-container: 1200px;
  --rp-narrow: 1200px;
  --rp-font: var(--font-body);
  --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --rp-ease: .28s cubic-bezier(.4,0,.2,1);
}

h1,h2,h3,h4,h5,h6,
.rp-hero h1,.hero h1,
.rp-section__head h2,.section-header h2,
.rp-card h2,.rp-card h3,.term-card h2,.term-card h3,.category-card h3,.article-card h2,.article-card h3,
.page-header h1,.article-header h1,
.prose h2,.prose h3,.term-sections h2,.term-sections h3,
.related-section h2,.related-materials-title,
.related-cta h2,.footer-request-head h3{
  font-family:var(--font-heading) !important;
  font-weight:600;
  letter-spacing:-0.03em;
}
.page-home .ilook-hero__heading{
  font-family:var(--font-heading) !important;
  font-weight:600;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.65;
  color:var(--rp-text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(91,141,239,.22), transparent 60%),
    radial-gradient(700px 420px at -10% 30%, rgba(61,214,198,.12), transparent 55%),
    var(--rp-bg);
  min-height:100vh;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--rp-accent);text-decoration:none;transition:color var(--rp-ease)}
a:hover{color:#9bbcff}
ul{list-style:none}
button,input,textarea,select{font:inherit}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}

.rp-shell{max-width:var(--rp-container);margin:0 auto;padding:0 24px}
.rp-shell--narrow{max-width:var(--rp-narrow)}
.container{max-width:var(--rp-container);margin:0 auto;padding:0 24px}
.container-narrow{max-width:var(--rp-narrow)}
.article-header .container.container-narrow{
  background:#d3e9ff;
  padding:30px 40px;
  max-width:1050px;
  border-radius:50px;
}

.rp-topbar{
  position:sticky;top:0;z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(246,247,251,.86);
  border-bottom:1px solid var(--rp-line);
}
.rp-topbar__row,.header-inner{
  display:flex;align-items:center;gap:20px;
  max-width:var(--rp-container);margin:0 auto;padding:14px 24px;
}
.rp-brand,.logo{display:inline-flex;align-items:center;gap:10px;color:var(--rp-text);font-weight:800;letter-spacing:-.02em}
.rp-brand__mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:22px;
  height:22px;
  color:var(--rp-accent);
}
.rp-brand__icon{
  display:block;
  width:100%;
  height:100%;
}
.rp-nav,.main-nav{display:flex;flex-wrap:wrap;gap:14px 18px;margin-left:auto}
.rp-nav a,.main-nav a{color:var(--rp-muted);font-size:14px;font-weight:600}
.rp-nav a:hover,.rp-nav a.active,.main-nav a:hover,.main-nav a.active{color:var(--rp-text)}

/* Dropdown "Услуги" */
.rp-nav-dropdown{
  position:relative;
}
.rp-nav-dropdown summary{
  list-style:none;
  cursor:pointer;
  color:var(--rp-muted);
  font-size:14px;
  font-weight:600;
}
.rp-nav-dropdown summary::-webkit-details-marker{display:none}
.rp-nav-dropdown summary.active{color:var(--rp-text)}
.rp-nav-dropdown__content{
  display:none;
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  min-width:360px;
  padding:14px 14px;
  border:1px solid var(--rp-line);
  border-radius:var(--rp-radius);
  background:var(--rp-bg-2);
  box-shadow:0 18px 40px rgba(0,0,0,.10);
  z-index:100;
}
.rp-nav-dropdown[open] .rp-nav-dropdown__content{display:block}
.rp-nav-dropdown__title{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--rp-muted);
  font-weight:800;
  margin-bottom:10px;
}
.rp-nav-dropdown__group{margin-bottom:12px}
.rp-nav-dropdown__subtitle{
  font-size:13px;
  font-weight:800;
  color:var(--rp-dim);
  margin-bottom:8px;
}
.rp-nav-dropdown__content a{
  display:block;
  padding:8px 10px;
  border-radius:12px;
  color:var(--rp-text);
  font-weight:650;
}
.rp-nav-dropdown__content a:hover{
  background:rgba(91,141,239,.10);
}
.rp-nav-dropdown__more{
  margin-top:6px;
  padding-top:10px;
  border-top:1px solid var(--rp-line);
  font-weight:800 !important;
}
.rp-search,.header-search{
  display:flex;align-items:center;gap:6px;
  background:var(--rp-elev);border:1px solid var(--rp-line);border-radius:999px;padding:4px 4px 4px 14px;
}
.rp-search input,.header-search input{
  border:0;background:transparent;color:var(--rp-text);outline:none;width:140px;padding:8px 0;
}
.rp-search button,.header-search button{
  border:0;border-radius:999px;padding:8px 12px;cursor:pointer;color:#fff;
  background:#0b0b0d;
}
.mobile-menu-toggle{display:none;background:none;border:0;color:var(--rp-text);padding:8px}

.rp-hero,.hero{
  padding:72px 0 56px;position:relative;overflow:hidden;
  border-bottom:1px solid var(--rp-line);
}
.rp-hero__grid,.hero-inner{display:grid;grid-template-columns:1.4fr .8fr;gap:36px;align-items:center}
.rp-kicker,.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 12px;border-radius:999px;font-size:12px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  color:#dce9ff;background:rgba(91,141,239,.16);border:1px solid rgba(91,141,239,.28);margin-bottom:18px;
}
.rp-hero h1,.hero h1{
  font-size:clamp(2rem,4.6vw,3.2rem);line-height:1.12;letter-spacing:-.03em;margin-bottom:14px;max-width:16ch;
}
.rp-lead,.hero-lead{color:var(--rp-muted);font-size:18px;max-width:54ch;margin-bottom:28px}
.rp-actions{display:flex;flex-wrap:wrap;gap:12px}
.rp-btn,.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 22px;border-radius:10px;font-weight:650;font-size:14px;letter-spacing:.01em;
  border:1px solid transparent;cursor:pointer;
  transition:transform var(--rp-ease),background var(--rp-ease),color var(--rp-ease),border-color var(--rp-ease),box-shadow var(--rp-ease);
}
.rp-btn:hover,.btn:hover{transform:translateY(-1px)}
.rp-btn--solid,.btn-primary{
  background:#0b0b0d;color:#fff;border-color:#0b0b0d;
  box-shadow:0 1px 0 rgba(255,255,255,.08) inset,0 8px 20px rgba(11,11,13,.18);
}
.rp-btn--solid:hover,.btn-primary:hover{background:#1c1c22;color:#fff;border-color:#1c1c22}
.rp-btn--ghost,.btn-ghost{background:transparent;color:var(--rp-text);border-color:rgba(0,0,0,.16)}
.rp-btn--ghost:hover,.btn-ghost:hover{background:rgba(0,0,0,.04);border-color:rgba(0,0,0,.28)}
.rp-stats,.hero-stats{display:grid;gap:12px}
.rp-stat,.stat-item{
  background:rgba(255,255,255,.88);border:1px solid var(--rp-line);border-radius:var(--rp-radius);padding:18px 20px;
}
.rp-stat strong,.stat-item strong{display:block;font-size:28px;font-weight:800}
.rp-stat span,.stat-item span{color:var(--rp-muted);font-size:13px}

.rp-section,.section{padding:64px 0}
.rp-section__head,.section-header{display:flex;justify-content:space-between;align-items:end;gap:16px;margin-bottom:28px}
.rp-section__head h2,.section-header h2{
  font-family:var(--font-heading) !important;
  font-size:28px;letter-spacing:-.02em
}
.section-link{font-weight:700;font-size:14px}

.rp-grid,.articles-grid,.terms-list,.categories-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:18px;
}
.rp-card,.term-card,.category-card,.contact-card{
  display:block;background:var(--rp-card);border:1px solid var(--rp-line);border-radius:var(--rp-radius);
  padding:20px;color:inherit;transition:transform var(--rp-ease),border-color var(--rp-ease),box-shadow var(--rp-ease);
}
.article-card{
  display:block;background:var(--rp-card);border:1px solid var(--rp-line);border-radius:16px;
  padding:0;overflow:hidden;color:inherit;
  transition:transform var(--rp-ease),border-color var(--rp-ease),box-shadow var(--rp-ease);
}
.rp-card:hover,.article-card:hover,.term-card:hover,.category-card:hover{
  transform:translateY(-3px);border-color:rgba(11,11,13,.18);box-shadow:0 16px 36px rgba(11,11,13,.1);
}
.rp-card h2,.rp-card h3,.term-card h2,.term-card h3,.category-card h3{font-size:18px;margin-bottom:8px;letter-spacing:-.01em}
.rp-card p,.term-card p,.article-card p{color:var(--rp-muted);font-size:14px}
.article-card-link{color:inherit;display:block;height:100%}
.article-card-image{aspect-ratio:16/10;overflow:hidden;margin:0;border-radius:0;background:#e8ecf3}
.article-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.article-card:hover .article-card-image img{transform:scale(1.04)}
.article-card-placeholder{display:flex;align-items:center;justify-content:center;color:var(--rp-dim);min-height:140px}
.article-card-body{padding:14px 16px 16px}
.article-card-category{
  display:inline-block;margin-bottom:6px;
  font-size:11px;font-weight:100;text-transform:uppercase;letter-spacing:.06em;color:var(--rp-dim);
}
.article-card-title,.article-card h2,.article-card h3{
  font-size:15px;line-height:1.35;letter-spacing:-.01em;margin:0 0 8px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.article-card-excerpt{
  font-size:13px;line-height:1.45;margin:0 0 10px;color:var(--rp-muted);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.article-card-meta,.page-meta{
  display:flex;flex-wrap:wrap;gap:8px 12px;color:var(--rp-dim);font-size:12px;margin:0;
}

.page-header{padding:48px 0 12px;border-bottom:1px solid var(--rp-line)}
.page-header h1{font-size:clamp(1.8rem,3vw,2.6rem);letter-spacing:-.02em;margin-bottom:8px}
.page-lead{color:var(--rp-muted);max-width:60ch}

/* Search page — large form */
.page-header:has(.search-form-large){padding:56px 0 40px}
.search-form-large{
  display:flex;
  align-items:stretch;
  gap:12px;
  width:100%;
  max-width:820px;
  margin-top:28px;
  padding:10px;
  background:var(--rp-elev);
  border:1px solid var(--rp-line);
  border-radius:18px;
  box-shadow:0 16px 48px rgba(11,11,13,.07);
}
.search-form-large input[type="search"]{
  flex:1 1 auto;
  min-width:0;
  border:0;
  outline:none;
  background:transparent;
  color:var(--rp-text);
  font-family:inherit;
  font-size:clamp(17px,2vw,20px);
  line-height:1.35;
  padding:18px 22px;
  border-radius:12px;
}
.search-form-large input[type="search"]::placeholder{color:var(--rp-dim)}
.search-form-large input[type="search"]:focus{
  background:rgba(91,141,239,.06);
}
.search-form-large input[type="search"]::-webkit-search-decoration,
.search-form-large input[type="search"]::-webkit-search-cancel-button{display:none}
.search-form-large button{
  flex:0 0 auto;
  border:0;
  cursor:pointer;
  font-family:inherit;
  font-size:16px;
  font-weight:700;
  letter-spacing:.01em;
  color:#fff;
  background:#0b0b0d;
  border-radius:12px;
  padding:18px 36px;
  transition:transform var(--rp-ease),background var(--rp-ease),box-shadow var(--rp-ease);
  box-shadow:0 8px 20px rgba(11,11,13,.18);
}
.search-form-large button:hover{
  background:#1c1c22;
  transform:translateY(-1px);
}
.search-form-large button:active{transform:translateY(0)}
.search-results-count{margin-bottom:28px;color:var(--rp-muted);font-size:15px}
@media (max-width:640px){
  .search-form-large{
    flex-direction:column;
    gap:10px;
    padding:12px;
    border-radius:16px;
    margin-top:22px;
  }
  .search-form-large input[type="search"]{padding:16px 18px;font-size:17px}
  .search-form-large button{width:100%;padding:16px 22px}
}

.all-articles-list{
  border:1px solid var(--rp-line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 12px 36px rgba(11,11,13,.05);
}
.all-articles-head,
.all-articles-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 140px 110px;
  gap:16px;
  align-items:center;
  padding:14px 20px;
}
.all-articles-head{
  background:linear-gradient(180deg,#f4f6fb 0%,#eef2f8 100%);
  border-bottom:1px solid var(--rp-line);
  font-size:11px;font-weight:750;letter-spacing:.07em;text-transform:uppercase;color:var(--rp-dim);
}
.all-articles-row{
  color:inherit;text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,.06);
  transition:background var(--rp-ease),transform var(--rp-ease);
}
.all-articles-row:last-child{border-bottom:0}
.all-articles-row:hover{
  background:rgba(91,141,239,.06);
}
.all-articles-title{
  font-family:var(--font-heading);
  font-size:17px;line-height:1.35;letter-spacing:-.01em;color:var(--rp-text);
  transition:color var(--rp-ease);
}
.all-articles-row:hover .all-articles-title{color:#2f5fbf}
.all-articles-category{
  justify-self:start;
  display:inline-flex;align-items:center;
  padding:5px 10px;border-radius:999px;
  background:rgba(11,11,13,.05);border:1px solid rgba(11,11,13,.06);
  font-size:12px;font-weight:650;color:var(--rp-muted);white-space:nowrap;
}
.all-articles-date{
  justify-self:end;
  font-size:13px;font-variant-numeric:tabular-nums;color:var(--rp-dim);white-space:nowrap;
}
@media (max-width:760px){
  .all-articles-head{display:none}
  .all-articles-row{
    grid-template-columns:1fr auto;
    grid-template-areas:
      "title title"
      "cat date";
    gap:8px 12px;
    padding:16px 16px;
  }
  .all-articles-title{grid-area:title;font-size:16px}
  .all-articles-category{grid-area:cat}
  .all-articles-date{grid-area:date;align-self:center}
}

.article-header{padding:40px 0 20px}
.article-category-link{display:inline-block;margin-bottom:12px;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.article-header h1{
  font-family:var(--font-heading) !important;
  font-size:clamp(1.8rem,3.4vw,2.8rem);letter-spacing:-.02em;margin-bottom:12px
}
.article-meta{
  display:flex;flex-wrap:wrap;align-items:center;gap:10px 0;
  margin:0 0 18px;padding:12px 0 0;
  border-top:1px solid rgba(0,0,0,.08);
  font-size:13px;line-height:1.3;color:var(--rp-dim);
}
.article-meta > *{
  display:inline-flex;align-items:center;
  padding:0 12px;
  border-right:1px solid rgba(0,0,0,.1);
}
.article-meta > *:first-child{padding-left:0}
.article-meta > *:last-child{border-right:0;padding-right:0}
.article-author{
  gap:8px;font-weight:650;color:var(--rp-text);
}
.author-avatar{
  width:28px;height:28px;border-radius:50%;object-fit:cover;flex-shrink:0;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 1px 2px rgba(0,0,0,.06);
}
.article-meta time,
.article-meta__item{color:var(--rp-dim);font-weight:500}
.article-lead{color:var(--rp-muted);font-size:18px}

.prose,.term-sections{color:var(--rp-text)}
.prose h2,.term-sections h2{font-size:1.35rem;margin:28px 0 12px;letter-spacing:-.01em}
.prose p,.term-sections p{margin-bottom:14px;color:var(--rp-muted)}
.prose ul,.prose ol{margin:0 0 16px 1.2em;list-style:disc}
.prose li{margin-bottom:6px;color:var(--rp-muted)}
.prose a{text-decoration:underline;text-underline-offset:3px}
.prose figure.table,
.term-sections figure.table{
  margin:28px 0;padding:0;border:0;
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  border-radius:16px;
  border:1px solid var(--rp-line);
  background:#fff;
  box-shadow:0 10px 28px rgba(11,11,13,.05);
}
.prose table,
.term-sections table{
  width:100%;min-width:520px;border-collapse:collapse;margin:0;font-size:14px;line-height:1.45;
}
.prose th,.prose td,
.term-sections th,.term-sections td{
  padding:13px 16px;text-align:left;vertical-align:top;
  border-bottom:1px solid rgba(0,0,0,.07);
  color:var(--rp-muted);
}
.prose th,
.term-sections th{
  background:linear-gradient(180deg,#f4f6fb 0%,#eef2f8 100%);
  color:var(--rp-text);font-weight:700;font-size:12px;
  letter-spacing:.04em;text-transform:uppercase;white-space:nowrap;
  border-bottom:1px solid var(--rp-line);
}
.prose tbody tr:last-child td,
.term-sections tbody tr:last-child td{border-bottom:0}
.prose tbody tr:nth-child(even) td,
.term-sections tbody tr:nth-child(even) td{background:rgba(91,141,239,.035)}
.prose tbody tr:hover td,
.term-sections tbody tr:hover td{background:rgba(91,141,239,.07)}
.prose td:first-child,
.term-sections td:first-child{color:var(--rp-text);font-weight:650}

.related-materials-section{padding:40px 0 64px}
.related-materials-title{font-size:24px;margin-bottom:18px}
.related-materials-group{margin-bottom:22px}
.related-materials-group h3{font-size:14px;text-transform:uppercase;letter-spacing:.05em;color:var(--rp-muted);margin:0 0 10px}
.related-materials-list{
  display:grid;gap:0;list-style:none;
  margin:10px 0 6px;padding:6px 0;
  background:#fff;
  border:1px solid var(--rp-line);
  border-radius:14px;
  overflow:hidden;
}
.related-materials-list li{
  display:flex;flex-direction:column;align-items:flex-start;gap:4px;
  min-width:0;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.related-materials-list li:last-child{border-bottom:0}
.related-materials-list li:hover{background:rgba(91,141,239,.04)}
.related-materials-list--compact{
  display:grid;grid-template-columns:1fr 1fr;gap:10px 18px;
  margin:10px 0 6px;padding:0;background:transparent;border:0;border-radius:0;overflow:visible;
}
.related-materials-list--compact li{
  padding:12px 14px;
  border:1px solid var(--rp-line);
  border-radius:12px;
  background:#fff;
  transition:border-color var(--rp-ease),box-shadow var(--rp-ease),transform var(--rp-ease);
}
.related-materials-list--compact li:hover{
  border-color:rgba(91,141,239,.28);
  box-shadow:0 10px 24px rgba(11,11,13,.06);
  transform:translateY(-1px);
  background:#fff;
}
.related-materials-list a{
  color:var(--rp-text);font-weight:650;line-height:1.35;
  text-decoration:none;max-width:100%;
}
.related-materials-list a:hover{color:#2f5fbf}
.related-meta{
  display:block;margin:0;padding:0;
  color:var(--rp-dim);font-size:12px;font-weight:600;line-height:1.35;
}

.articles-list-related{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  align-items:stretch;
}
.articles-list-related .article-card{
  height:100%;
  margin:0;
  display:flex;
  flex-direction:column;
}
.articles-list-related .article-card-link{
  display:flex;
  flex-direction:column;
  height:100%;
  color:inherit;
}
.articles-list-related .article-card-body{
  display:flex;flex-direction:column;flex:1;gap:7px;padding:12px 14px 14px;
}
.articles-list-related .article-card-image{
  aspect-ratio:16/10;
  max-height:140px;
  margin-bottom:0;
}
.articles-list-related .article-card-image img{
  width:100%;height:100%;object-fit:cover;
}
.articles-list-related .article-card-placeholder{
  display:flex;align-items:center;justify-content:center;color:var(--rp-dim);
}
.articles-list-related .article-card-placeholder svg{width:28px;height:28px}
.articles-list-related .article-card-title{
  font-size:14px;line-height:1.35;margin:4px 0 8px;
}
.articles-list-related .article-card-excerpt{
  font-size:12px;margin:0 0 8px;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.articles-list-related .article-card-meta{margin-top:auto;font-size:12px}
.related-section h2{font-size:24px;margin-bottom:18px}
.section-cta{padding:56px 0 72px}
.cta-band,
.related-cta{
  position:relative;overflow:hidden;
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:32px 40px;
  margin-top:0;padding:42px 44px;
  border-radius:28px;
  border:1px solid rgba(91,141,239,.16);
  background:
    radial-gradient(560px 280px at 100% 0%, rgba(91,141,239,.14), transparent 58%),
    radial-gradient(440px 240px at 0% 100%, rgba(61,214,198,.10), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #f5f8fd 100%);
  box-shadow:0 20px 50px rgba(11,11,13,.07);
}
.cta-band::before,
.related-cta::before{
  content:"";position:absolute;left:0;top:22px;bottom:22px;width:3px;border-radius:999px;
  background:var(--rp-grad);
}
.cta-band__body,
.related-cta__body{
  position:relative;flex:1 1 300px;max-width:560px;padding-left:18px;
}
.cta-band__eyebrow{
  margin:0 0 14px;
  font-size:12px !important;
  font-weight:100 !important;
  letter-spacing:.08em;text-transform:uppercase;
  color:#5b8def !important;
  line-height:1.3;max-width:none;
}
.cta-band__title,
.cta-band h2,
.related-cta h2{
  font-family:var(--font-heading) !important;
  font-size:clamp(1.7rem,3vw,2.35rem);line-height:1.12;letter-spacing:-.025em;
  margin:0 0 16px;max-width:14ch;color:var(--rp-text);
}
.cta-band__text,
.related-cta p{
  margin:0;color:var(--rp-muted);font-size:17px;line-height:1.6;max-width:38ch;
}
.cta-band__actions,
.related-cta__actions,
.related-cta .rp-actions{
  position:relative;display:flex;flex-wrap:wrap;gap:12px;flex-shrink:0;margin-top:4px;
}
.cta-band__ghost{background:rgba(255,255,255,.7)}
@media (max-width:640px){
  .cta-band,.related-cta{padding:28px 22px;border-radius:20px;gap:24px}
  .cta-band::before,.related-cta::before{top:16px;bottom:16px}
  .cta-band__body,.related-cta__body{padding-left:14px}
  .cta-band__title,.cta-band h2,.related-cta h2{margin-bottom:14px;max-width:none}
  .cta-band__actions,.related-cta__actions,.related-cta .rp-actions{width:100%}
  .cta-band__actions .rp-btn,.cta-band__actions .btn,
  .related-cta__actions .rp-btn,.related-cta__actions .btn{flex:1 1 auto}
}

.rp-footer,.site-footer,.footer{
  margin-top:56px;padding:0 0 28px;
  border-top:0;
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(91,141,239,.18), transparent 55%),
    radial-gradient(700px 360px at 0% 40%, rgba(61,214,198,.08), transparent 50%),
    #0c0e14;
  color:rgba(255,255,255,.68);
}
.rp-footer a,.site-footer a,.footer a{color:rgba(255,255,255,.58)}
.rp-footer a:hover,.site-footer a:hover,.footer a:hover{color:#fff}
.rp-footer h3,.site-footer h3,.footer h3{
  color:#fff;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:14px;
}
.rp-footer .rp-brand,.site-footer .rp-brand{color:#fff}
.footer-brand p{margin-top:12px;font-size:14px;line-height:1.55;max-width:36ch;color:rgba(255,255,255,.5)}
.footer-grid,.footer__grid{
  display:grid;grid-template-columns:2fr 1fr 1fr;gap:28px;
  padding-top:36px;padding-bottom:8px;
}
.footer-links ul{list-style:none;margin:0;padding:0}
.footer-links a,.footer__links a{display:block;margin-bottom:8px;font-size:14px}
.footer-contact p{margin-bottom:8px;font-size:14px}
.footer-copy{
  margin-top:28px;padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.38);font-size:13px;
}
.footer-bottom,.footer__bottom{margin-top:28px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08);color:rgba(255,255,255,.38);font-size:13px}

.breadcrumbs{padding:18px 0 0;font-size:13px;color:var(--rp-dim)}
.breadcrumbs a{color:var(--rp-muted)}
.breadcrumbs ol{
  display:flex;flex-wrap:wrap;align-items:center;gap:6px 10px;
  list-style:none;margin:0;padding:0;
}
.breadcrumbs li{display:inline-flex;align-items:center;gap:10px}
.breadcrumbs li:not(:last-child)::after{
  content:"/";
  color:var(--rp-dim);
  opacity:.7;
}
.contacts-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.empty-state{color:var(--rp-muted);padding:24px;border:1px dashed var(--rp-line);border-radius:var(--rp-radius)}

.pagination{display:flex;gap:8px;flex-wrap:wrap;margin-top:28px}
.pagination a,.pagination span{
  min-width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;
  border-radius:10px;border:1px solid var(--rp-line);color:var(--rp-muted);padding:0 10px;
}
.pagination .active,.pagination [aria-current="page"]{background:#0b0b0d;color:#fff;border-color:#0b0b0d}

.faq-list{display:grid;gap:12px}
.faq-item,.faq-entry{background:var(--rp-card);border:1px solid var(--rp-line);border-radius:14px;padding:0;overflow:hidden}
.faq-item summary,.faq-question{cursor:pointer;font-weight:700;padding:14px 16px;list-style:none}
.faq-item summary::-webkit-details-marker,.faq-question::-webkit-details-marker{display:none}
.faq-answer,.faq-answer-body{padding:0 16px 16px;color:var(--rp-muted);line-height:1.6}
.faq-title{display:flex;align-items:center;gap:10px;margin-bottom:16px}
.faq-section{margin:28px 0}

/* Footer request form */
.footer-request{padding-top:40px}
.footer-request-wrap{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.4fr);
  gap:28px 40px;
  align-items:start;
  padding:32px 34px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow:0 24px 60px rgba(0,0,0,.28);
}
.footer-request-head h3{
  font-family:var(--font-heading);
  font-size:clamp(1.5rem,2.4vw,2rem);
  font-weight:400;
  text-transform:none;
  letter-spacing:-.02em;
  line-height:1.15;
  margin:0 0 10px;
  color:#fff;
  max-width:12ch;
}
.footer-request-hint{
  color:rgba(255,255,255,.52);font-size:15px;line-height:1.5;margin:0;max-width:28ch;
}
.footer-request-form .form-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:12px 14px;
}
.footer-request-form .form-group{margin:0}
.footer-request-form .form-group--message{grid-column:1 / -1}
.footer-request-form label{
  display:block;font-weight:600;font-size:12px;letter-spacing:.03em;
  text-transform:uppercase;margin-bottom:7px;color:rgba(255,255,255,.45);
}
.footer-request-form input,.footer-request-form textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.28);
  color:#fff;
  border-radius:12px;
  padding:12px 14px;
  outline:none;
  transition:border-color var(--rp-ease),background var(--rp-ease),box-shadow var(--rp-ease);
}
.footer-request-form input::placeholder,
.footer-request-form textarea::placeholder{color:rgba(255,255,255,.28)}
.footer-request-form input:focus,.footer-request-form textarea:focus{
  border-color:rgba(91,141,239,.55);
  background:rgba(0,0,0,.4);
  box-shadow:0 0 0 3px rgba(91,141,239,.15);
}
.footer-request-form textarea{resize:vertical;min-height:92px}
.footer-request-actions{
  display:flex;flex-wrap:wrap;align-items:center;gap:14px 18px;margin-top:16px;
}
.footer-request-submit{margin:0}
.footer-request-note{font-size:13px;color:rgba(255,255,255,.38)}
.rp-footer .btn-primary,
.site-footer .btn-primary{
  background:#fff;color:#0b0b0d;border-color:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}
.rp-footer .btn-primary:hover,
.site-footer .btn-primary:hover{
  background:#f2f4f8;color:#0b0b0d;border-color:#f2f4f8;
}

@media (max-width:900px){
  .footer-request-wrap{grid-template-columns:1fr;gap:20px;padding:24px 22px}
  .footer-request-head h3{max-width:none}
}
@media (max-width:640px){
  .footer-request-form .form-grid{grid-template-columns:1fr}
}

@media (max-width:900px){
  .rp-hero__grid,.hero-inner{grid-template-columns:1fr}
  .rp-nav,.main-nav{display:none}
  .mobile-menu-toggle{display:inline-flex;margin-left:auto}
  .footer-grid,.footer__grid{grid-template-columns:1fr}
  .articles-list-related{grid-template-columns:repeat(2,minmax(0,1fr))}
  .related-materials-list--compact{grid-template-columns:1fr}
  .main-nav.is-open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--rp-bg-2);
    padding:16px 24px;
    border-bottom:1px solid var(--rp-line);
    box-shadow:0 18px 40px rgba(0,0,0,.10);
    margin-left:0;
    gap:10px;
  }
  .rp-nav-dropdown__content{
    position:static;
    min-width:0;
    box-shadow:none;
    border:0;
    padding:0;
    margin-top:6px;
    background:transparent;
  }
}
@media (max-width:640px){
  .rp-topbar__row,.header-inner{padding:12px 16px}
  .container,.rp-shell{padding:0 16px}
  .article-header .container.container-narrow{padding:22px 20px;border-radius:28px}
  .rp-hero,.hero{padding:48px 0 36px}
  .articles-list-related{grid-template-columns:1fr}
}

/* —— Home hero (full-screen video, liquid glass) —— */
.page-home{
  background:#000;
  color:#fff;
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.page-home #main-content{padding-top:0}
.page-home .rp-section,
.page-home .section{background:#f6f7fb;color:var(--rp-text)}

.liquid-glass{
  background:rgba(0,0,0,.4);
  background-blend-mode:luminosity;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  border:none;
  box-shadow:inset 0 1px 1px rgba(255,255,255,.1);
  position:relative;
  overflow:hidden;
}
.liquid-glass::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:inherit;
  padding:1.4px;
  background:linear-gradient(180deg,
    rgba(255,255,255,.3) 0%,rgba(255,255,255,.1) 20%,
    rgba(255,255,255,0) 40%,rgba(255,255,255,0) 60%,
    rgba(255,255,255,.1) 80%,rgba(255,255,255,.3) 100%);
  -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
}

.ilook-hero{
  position:relative;
  min-height:100vh;
  min-height:100dvh;
  overflow:hidden;
  background:#000;
}
.ilook-hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.ilook-hero__shell{
  position:relative;
  z-index:2;
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  padding:24px 24px 48px;
}
.ilook-hero__nav-wrap{
  padding-top:0;
}
.ilook-hero__nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-radius:12px;
  padding:8px 16px;
}
.ilook-hero__logo{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:1.5rem;
  font-weight:600;
  letter-spacing:-0.025em;
  color:#fff;
  text-decoration:none;
  flex-shrink:0;
}
.ilook-hero__logo .rp-brand__mark{
  width:26px;
  height:26px;
  color:#fff;
}
.ilook-hero__logo:hover{color:#fff}
.ilook-hero__nav-links{
  display:none;
  align-items:center;
  gap:32px;
}
.ilook-hero__nav-links a{
  font-size:.875rem;
  color:#fff;
  text-decoration:none;
  transition:color .2s ease;
}
.ilook-hero__nav-links a:hover{color:#d1d5db}
.ilook-hero__nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#000;
  padding:8px 24px;
  border-radius:8px;
  font-size:.875rem;
  font-weight:500;
  text-decoration:none;
  transition:background .2s ease;
  flex-shrink:0;
}
.ilook-hero__nav-cta:hover{background:#f3f4f6;color:#000}
.ilook-hero__body{
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding-bottom:48px;
}
.ilook-hero__grid{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.ilook-hero__main{
  max-width:100%;
}
.ilook-hero__heading{
  font-family:var(--font-heading) !important;
  font-weight:600;
  font-size:2.25rem;
  line-height:1.05;
  color:#fff;
  margin:0 0 16px;
}
.ilook-hero__char{
  display:inline-block;
  opacity:0;
  transform:translateX(-18px);
  transition:opacity 500ms ease,transform 500ms ease;
}
.ilook-hero__heading.is-animated .ilook-hero__char{
  opacity:1;
  transform:translateX(0);
}
.ilook-hero__sub{
  font-size:1rem;
  line-height:1.55;
  color:#d1d5db;
  margin:0 0 20px;
  max-width:36rem;
  opacity:0;
  transition:opacity 1s ease;
}
.ilook-hero__sub.is-visible{opacity:1}
.ilook-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  opacity:0;
  transition:opacity 1s ease;
}
.ilook-hero__actions.is-visible{opacity:1}
.ilook-hero__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 32px;
  border-radius:8px;
  font-size:1rem;
  font-weight:500;
  text-decoration:none;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.ilook-hero__btn--solid{
  background:#fff;
  color:#000;
}
.ilook-hero__btn--solid:hover{background:#f3f4f6;color:#000}
.ilook-hero__btn--glass{
  color:#fff;
  border:1px solid rgba(255,255,255,.2);
}
.ilook-hero__btn--glass:hover{
  background:#fff;
  color:#000;
  border-color:#fff;
}
.ilook-hero__tag-col{
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
}
.ilook-hero__tag{
  border:1px solid rgba(255,255,255,.2);
  border-radius:12px;
  padding:12px 24px;
  font-size:1.125rem;
  font-weight:300;
  color:#fff;
  opacity:0;
  transition:opacity 1s ease;
}
.ilook-hero__tag.is-visible{opacity:1}

@media (min-width:768px){
  .ilook-hero__shell{padding:24px 48px 48px}
  .ilook-hero__nav-links{display:flex;flex-wrap:wrap;justify-content:center;gap:16px 20px}
  .ilook-hero__nav-links a{font-size:.8125rem;white-space:nowrap}
  .ilook-hero__heading{font-size:3rem}
  .ilook-hero__sub{font-size:1.125rem}
  .ilook-hero__tag{font-size:1.25rem}
}
@media (min-width:1024px){
  .ilook-hero__shell{padding:24px 64px 64px}
  .ilook-hero__body{padding-bottom:64px}
  .ilook-hero__grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:end;
    gap:32px;
  }
  .ilook-hero__heading{font-size:3.75rem}
  .ilook-hero__tag-col{justify-content:flex-end}
  .ilook-hero__tag{font-size:1.5rem}
}
@media (min-width:1280px){
  .ilook-hero__heading{font-size:4.5rem}
}

@media (max-width:767px){
  .ilook-hero__nav-links{display:none !important}
  .ilook-hero__nav-cta{padding:8px 16px;font-size:.8125rem}
}

/* Headings */
h1,h2,h3,h4,h5,h6,
.article-header h1,.page-header h1,
.section-header h2,.rp-section__head h2,
.related-cta h2,.related-materials-title,
.footer-request-head h3,
.prose h2,.prose h3,.term-sections h2,.term-sections h3{
  font-family:var(--font-heading) !important;
  font-weight:600;
  letter-spacing:-0.03em;
}

/* /uslugi catalog */
.services-catalog{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:16px;
}
.service-card{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:22px 20px;
  background:var(--rp-card);
  border:1px solid var(--rp-line);
  border-radius:16px;
  color:inherit;
  text-decoration:none;
  transition:transform var(--rp-ease),border-color var(--rp-ease),box-shadow var(--rp-ease);
}
.service-card:hover{
  transform:translateY(-3px);
  border-color:rgba(11,11,13,.16);
  box-shadow:0 18px 40px rgba(11,11,13,.09);
  color:inherit;
}
.service-card__icon{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border-radius:14px;
  color:#1a3a6b;
  background:
    linear-gradient(145deg, rgba(91,141,239,.18), rgba(61,214,198,.12));
  border:1px solid rgba(91,141,239,.22);
  transition:transform var(--rp-ease),background var(--rp-ease);
}
.service-card:hover .service-card__icon{
  transform:scale(1.06);
  background:linear-gradient(145deg, rgba(91,141,239,.26), rgba(61,214,198,.18));
}
.service-card__svg{width:22px;height:22px;display:block}
.service-card__body{min-width:0;flex:1}
.service-card__title{
  font-family:var(--font-heading) !important;
  font-size:clamp(1.28rem,1.1rem + .55vw,1.6rem);
  line-height:1.22;
  letter-spacing:-.02em;
  font-weight:400;
  margin:2px 0 8px;
  color:var(--rp-text);
}
.service-card__text{
  margin:0;
  font-size:14.5px;
  line-height:1.5;
  color:var(--rp-muted);
}
.service-card__price{
  display:inline-flex;
  align-items:center;
  margin-top:12px;
  padding:6px 12px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:750;
  letter-spacing:.01em;
  color:#0b3d2e;
  background:linear-gradient(135deg, rgba(61,214,198,.28), rgba(91,141,239,.14));
  border:1px solid rgba(61,214,198,.35);
}
.service-card:hover .service-card__price{
  border-color:rgba(61,214,198,.5);
  background:linear-gradient(135deg, rgba(61,214,198,.36), rgba(91,141,239,.2));
}
@media (max-width:560px){
  .services-catalog{grid-template-columns:1fr;gap:12px}
  .service-card{padding:18px 16px;gap:14px}
  .service-card__icon{width:44px;height:44px;border-radius:12px}
}

/* Catalog pages: /terms, /resheniya, /razbory */
.page-terms .catalog-hero,
.page-solutions .catalog-hero,
.page-reviews .catalog-hero,
.page-problems .catalog-hero,
.page-terms .terms-hero{
  position:relative;
  padding:56px 0 40px;
  border-bottom:0;
  overflow:hidden;
}
.page-terms .catalog-hero::before,
.page-solutions .catalog-hero::before,
.page-reviews .catalog-hero::before,
.page-problems .catalog-hero::before,
.page-terms .terms-hero::before{
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
}
.page-terms .catalog-hero::before,
.page-terms .terms-hero::before{
  background:
    radial-gradient(680px 320px at 12% 0%, rgba(91,141,239,.22), transparent 58%),
    radial-gradient(520px 280px at 88% 100%, rgba(61,214,198,.16), transparent 55%);
}
.page-solutions .catalog-hero::before{
  background:
    radial-gradient(680px 320px at 10% 0%, rgba(61,214,198,.24), transparent 58%),
    radial-gradient(520px 280px at 92% 100%, rgba(91,141,239,.16), transparent 55%);
}
.page-reviews .catalog-hero::before{
  background:
    radial-gradient(680px 320px at 14% 0%, rgba(130,110,255,.2), transparent 58%),
    radial-gradient(520px 280px at 86% 100%, rgba(91,141,239,.18), transparent 55%);
}
.page-problems .catalog-hero::before{
  background:
    radial-gradient(680px 320px at 12% 0%, rgba(255,120,80,.18), transparent 58%),
    radial-gradient(520px 280px at 88% 100%, rgba(194,65,12,.12), transparent 55%);
}
.page-terms .catalog-hero__inner,
.page-solutions .catalog-hero__inner,
.page-reviews .catalog-hero__inner,
.page-problems .catalog-hero__inner,
.page-terms .terms-hero__inner{
  position:relative;
  max-width:720px;
}
.page-terms .catalog-hero__badge,
.page-solutions .catalog-hero__badge,
.page-reviews .catalog-hero__badge,
.page-problems .catalog-hero__badge,
.page-terms .terms-hero__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
  padding:7px 14px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  border:1px solid rgba(91,141,239,.28);
  box-shadow:0 8px 24px rgba(91,141,239,.12);
}
.page-terms .catalog-hero__badge,
.page-terms .terms-hero__badge{
  color:#1a3a6b;
  background:linear-gradient(135deg, rgba(91,141,239,.18), rgba(61,214,198,.14));
}
.page-solutions .catalog-hero__badge{
  color:#0b5c4a;
  background:linear-gradient(135deg, rgba(61,214,198,.22), rgba(91,141,239,.12));
  border-color:rgba(61,214,198,.35);
  box-shadow:0 8px 24px rgba(61,214,198,.14);
}
.page-reviews .catalog-hero__badge{
  color:#3d2d8a;
  background:linear-gradient(135deg, rgba(130,110,255,.18), rgba(91,141,239,.12));
  border-color:rgba(130,110,255,.3);
  box-shadow:0 8px 24px rgba(130,110,255,.12);
}
.page-problems .catalog-hero__badge{
  color:#8a3a12;
  background:linear-gradient(135deg, rgba(255,120,80,.2), rgba(194,65,12,.1));
  border-color:rgba(255,120,80,.32);
  box-shadow:0 8px 24px rgba(255,120,80,.12);
}
.page-terms .catalog-hero__badge::before,
.page-solutions .catalog-hero__badge::before,
.page-reviews .catalog-hero__badge::before,
.page-problems .catalog-hero__badge::before,
.page-terms .terms-hero__badge::before{
  content:'';
  width:7px;height:7px;border-radius:50%;
  box-shadow:0 0 10px rgba(91,141,239,.65);
}
.page-terms .catalog-hero__badge::before,
.page-terms .terms-hero__badge::before{background:var(--rp-grad)}
.page-solutions .catalog-hero__badge::before{background:linear-gradient(135deg, #3dd6c6, #5b8def)}
.page-reviews .catalog-hero__badge::before{background:linear-gradient(135deg, #9b8cff, #5b8def)}
.page-problems .catalog-hero__badge::before{background:linear-gradient(135deg, #ff8866, #c2410c)}
.page-terms .catalog-hero h1,
.page-solutions .catalog-hero h1,
.page-reviews .catalog-hero h1,
.page-problems .catalog-hero h1,
.page-terms .terms-hero h1{
  font-size:clamp(2rem,4.2vw,3rem);
  line-height:1.08;
  letter-spacing:-.03em;
  margin-bottom:14px;
}
.page-terms .catalog-hero__meta,
.page-solutions .catalog-hero__meta,
.page-reviews .catalog-hero__meta,
.page-problems .catalog-hero__meta,
.page-terms .terms-hero__meta{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap:6px 10px;
  margin:0;
  font-size:16px;
  color:var(--rp-muted);
  line-height:1.5;
}
.page-terms .catalog-hero__count,
.page-solutions .catalog-hero__count,
.page-reviews .catalog-hero__count,
.page-problems .catalog-hero__count,
.page-terms .terms-hero__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:2.1em;
  padding:2px 10px;
  border-radius:999px;
  font-size:15px;
  font-weight:800;
  color:var(--rp-text);
  background:rgba(255,255,255,.82);
  border:1px solid var(--rp-line);
}
.page-terms .catalog-hero__filter,
.page-terms .terms-hero__filter{
  font-weight:650;
  color:var(--rp-dim);
}

.page-terms .catalog-section,
.page-solutions .catalog-section,
.page-reviews .catalog-section,
.page-problems .catalog-section,
.page-terms .terms-section{padding-top:28px;padding-bottom:72px}
.page-solutions .catalog-section,
.page-reviews .catalog-section,
.page-problems .catalog-section{padding-top:36px}
.page-terms .terms-toolbar{
  position:sticky;
  top:62px;
  z-index:20;
  margin-bottom:28px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.08);
  backdrop-filter:blur(16px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 16px 40px rgba(11,11,13,.07);
}
.page-terms .terms-toolbar__label{
  margin:0 0 12px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--rp-dim);
}

.page-terms .alphabet-nav,
.alphabet-nav{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-start;
  gap:10px;
}
.page-terms .alphabet-nav__groups,
.alphabet-nav__groups{
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
  min-width:0;
}
.page-terms .alphabet-nav__group,
.alphabet-nav__group{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}
.page-terms .alphabet-nav__group-label,
.alphabet-nav__group-label{
  flex:0 0 auto;
  min-width:34px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--rp-dim);
}
.page-terms .alphabet-nav__letters,
.alphabet-nav__letters{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  flex:1;
  min-width:0;
}
.page-terms .alphabet-nav a,
.alphabet-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:38px;
  height:38px;
  padding:0 10px;
  border-radius:11px;
  font-size:14px;
  font-weight:750;
  letter-spacing:.02em;
  color:var(--rp-muted);
  background:rgba(246,247,251,.9);
  border:1px solid rgba(0,0,0,.07);
  transition:
    transform var(--rp-ease),
    color var(--rp-ease),
    background var(--rp-ease),
    border-color var(--rp-ease),
    box-shadow var(--rp-ease);
}
.page-terms .alphabet-nav a:hover,
.alphabet-nav a:hover{
  color:var(--rp-text);
  background:#fff;
  border-color:rgba(91,141,239,.35);
  box-shadow:0 6px 18px rgba(91,141,239,.14);
  transform:translateY(-1px);
}
.page-terms .alphabet-nav a.active,
.alphabet-nav a.active{
  color:#fff;
  background:var(--rp-grad);
  border-color:transparent;
  box-shadow:
    0 1px 0 rgba(255,255,255,.22) inset,
    0 10px 24px rgba(91,141,239,.35);
  transform:translateY(-1px);
}
.page-terms .alphabet-nav__all,
.alphabet-nav__all{
  min-width:auto !important;
  padding:0 16px !important;
  font-size:13px !important;
  font-weight:800 !important;
  letter-spacing:.04em;
  text-transform:uppercase;
  border-radius:999px !important;
  background:#0b0b0d !important;
  color:#fff !important;
  border-color:#0b0b0d !important;
  box-shadow:0 8px 22px rgba(11,11,13,.18);
}
.page-terms .alphabet-nav__all:hover,
.alphabet-nav__all:hover{
  background:#1c1c22 !important;
  border-color:#1c1c22 !important;
  color:#fff !important;
}
.page-terms .alphabet-nav__all.active,
.alphabet-nav__all.active{
  background:var(--rp-grad) !important;
  border-color:transparent !important;
  box-shadow:0 10px 26px rgba(91,141,239,.38) !important;
}

.page-terms .terms-list,
.page-solutions .terms-list,
.page-reviews .terms-list,
.page-problems .terms-list,
.page-terms .catalog-list,
.page-solutions .catalog-list,
.page-reviews .catalog-list,
.page-problems .catalog-list{
  grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
  gap:14px;
}
.page-terms .term-card,
.page-solutions .term-card,
.page-reviews .term-card,
.page-problems .term-card,
.page-terms .catalog-card,
.page-solutions .catalog-card,
.page-reviews .catalog-card,
.page-problems .catalog-card{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:start;
  gap:14px 16px;
  padding:20px 18px 20px 20px;
  overflow:hidden;
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92));
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
}
.page-terms .term-card::before,
.page-solutions .term-card::before,
.page-reviews .term-card::before,
.page-problems .term-card::before,
.page-terms .catalog-card::before,
.page-solutions .catalog-card::before,
.page-reviews .catalog-card::before,
.page-problems .catalog-card::before{
  content:'';
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:3px;
  background:var(--rp-grad);
  opacity:0;
  transform:scaleX(.35);
  transform-origin:left center;
  transition:opacity var(--rp-ease), transform var(--rp-ease);
}
.page-terms .term-card:hover,
.page-solutions .term-card:hover,
.page-reviews .term-card:hover,
.page-problems .term-card:hover,
.page-terms .catalog-card:hover,
.page-solutions .catalog-card:hover,
.page-reviews .catalog-card:hover,
.page-problems .catalog-card:hover{
  transform:translateY(-4px);
  border-color:rgba(91,141,239,.28);
  box-shadow:0 20px 44px rgba(11,11,13,.1);
  color:inherit;
}
.page-terms .term-card:hover::before,
.page-solutions .term-card:hover::before,
.page-reviews .term-card:hover::before,
.page-problems .term-card:hover::before,
.page-terms .catalog-card:hover::before,
.page-solutions .catalog-card:hover::before,
.page-reviews .catalog-card:hover::before,
.page-problems .catalog-card:hover::before{
  opacity:1;
  transform:scaleX(1);
}
.page-terms .term-card__letter,
.page-terms .term-card__icon,
.page-solutions .term-card__icon,
.page-reviews .term-card__icon,
.page-problems .term-card__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  flex-shrink:0;
  border-radius:14px;
  transition:transform var(--rp-ease), background var(--rp-ease), border-color var(--rp-ease);
}
.page-terms .term-card__letter{
  font-family:var(--font-heading) !important;
  font-size:20px;
  font-weight:400;
  color:#1a3a6b;
  background:linear-gradient(145deg, rgba(91,141,239,.16), rgba(61,214,198,.12));
  border:1px solid rgba(91,141,239,.22);
}
.page-solutions .term-card__icon--solution{
  color:#0b5c4a;
  background:linear-gradient(145deg, rgba(61,214,198,.22), rgba(91,141,239,.1));
  border:1px solid rgba(61,214,198,.32);
}
.page-reviews .term-card__icon--review{
  color:#3d2d8a;
  background:linear-gradient(145deg, rgba(130,110,255,.18), rgba(91,141,239,.1));
  border:1px solid rgba(130,110,255,.28);
}
.page-problems .term-card__icon--problem{
  color:#8a3a12;
  background:linear-gradient(145deg, rgba(255,120,80,.2), rgba(194,65,12,.1));
  border:1px solid rgba(255,120,80,.3);
}
.page-terms .term-card:hover .term-card__letter,
.page-solutions .term-card:hover .term-card__icon,
.page-reviews .term-card:hover .term-card__icon,
.page-problems .term-card:hover .term-card__icon{
  transform:scale(1.06);
}
.page-terms .term-card:hover .term-card__letter{
  background:linear-gradient(145deg, rgba(91,141,239,.24), rgba(61,214,198,.18));
}
.page-solutions .term-card:hover .term-card__icon--solution{
  background:linear-gradient(145deg, rgba(61,214,198,.32), rgba(91,141,239,.16));
  border-color:rgba(61,214,198,.45);
}
.page-reviews .term-card:hover .term-card__icon--review{
  background:linear-gradient(145deg, rgba(130,110,255,.26), rgba(91,141,239,.16));
  border-color:rgba(130,110,255,.4);
}
.page-problems .term-card:hover .term-card__icon--problem{
  background:linear-gradient(145deg, rgba(255,120,80,.3), rgba(194,65,12,.16));
  border-color:rgba(255,120,80,.42);
}
.page-solutions .term-card:hover::before,
.page-reviews .term-card:hover::before,
.page-problems .term-card:hover::before{
  background:var(--rp-grad);
}
.page-solutions .term-card:hover{border-color:rgba(61,214,198,.32)}
.page-reviews .term-card:hover{border-color:rgba(130,110,255,.28)}
.page-problems .term-card:hover{border-color:rgba(255,120,80,.28)}
.page-terms .term-card__body,
.page-solutions .term-card__body,
.page-reviews .term-card__body,
.page-problems .term-card__body{min-width:0}
.page-terms .term-card h2,
.page-solutions .term-card h2,
.page-reviews .term-card h2,
.page-problems .term-card h2{
  font-size:clamp(1.05rem, .95rem + .35vw, 1.22rem);
  line-height:1.28;
  margin:2px 0 8px;
  color:var(--rp-text);
  transition:color var(--rp-ease);
}
.page-terms .term-card:hover h2,
.page-solutions .term-card:hover h2,
.page-reviews .term-card:hover h2{color:#1a3a6b}
.page-solutions .term-card:hover h2{color:#0b5c4a}
.page-reviews .term-card:hover h2{color:#3d2d8a}
.page-problems .term-card:hover h2{color:#8a3a12}
.page-terms .term-card p,
.page-solutions .term-card p,
.page-reviews .term-card p,
.page-problems .term-card p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:var(--rp-muted);
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.page-terms .term-card__arrow,
.page-solutions .term-card__arrow,
.page-reviews .term-card__arrow,
.page-problems .term-card__arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:center;
  width:34px;
  height:34px;
  border-radius:999px;
  color:var(--rp-dim);
  background:rgba(246,247,251,.9);
  border:1px solid rgba(0,0,0,.06);
  transition:
    transform var(--rp-ease),
    color var(--rp-ease),
    background var(--rp-ease),
    border-color var(--rp-ease);
}
.page-terms .term-card:hover .term-card__arrow,
.page-solutions .term-card:hover .term-card__arrow,
.page-reviews .term-card:hover .term-card__arrow,
.page-problems .term-card:hover .term-card__arrow{
  color:#fff;
  background:#0b0b0d;
  border-color:#0b0b0d;
  transform:translateX(3px);
}

.page-terms .catalog-empty,
.page-solutions .catalog-empty,
.page-reviews .catalog-empty,
.page-problems .catalog-empty,
.page-terms .terms-empty{
  text-align:center;
  padding:56px 24px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  border:1px dashed rgba(0,0,0,.12);
}
.page-terms .catalog-empty__title,
.page-solutions .catalog-empty__title,
.page-reviews .catalog-empty__title,
.page-problems .catalog-empty__title,
.page-terms .terms-empty__title{
  margin:0 0 8px;
  font-family:var(--font-heading) !important;
  font-size:1.5rem;
  color:var(--rp-text);
}
.page-terms .catalog-empty__text,
.page-solutions .catalog-empty__text,
.page-reviews .catalog-empty__text,
.page-problems .catalog-empty__text,
.page-terms .terms-empty__text{
  margin:0 0 20px;
  color:var(--rp-muted);
}

@media (max-width:900px){
  .page-terms .terms-toolbar{top:56px;padding:14px}
  .page-terms .alphabet-nav{align-items:stretch}
  .page-terms .alphabet-nav__letters{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:4px;
    scrollbar-width:thin;
    scrollbar-color:rgba(91,141,239,.35) transparent;
    -webkit-overflow-scrolling:touch;
    mask-image:linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 24px), transparent);
  }
  .page-terms .alphabet-nav__letters a{flex:0 0 auto}
}
@media (max-width:560px){
  .page-terms .catalog-hero,
  .page-solutions .catalog-hero,
  .page-reviews .catalog-hero,
  .page-problems .catalog-hero,
  .page-terms .terms-hero{padding:40px 0 28px}
  .page-terms .terms-list,
  .page-solutions .terms-list,
  .page-reviews .terms-list,
  .page-problems .terms-list{grid-template-columns:1fr}
  .page-terms .term-card,
  .page-solutions .term-card,
  .page-reviews .term-card,
  .page-problems .term-card{
    grid-template-columns:auto 1fr;
    grid-template-rows:auto auto;
  }
  .page-terms .term-card__arrow,
  .page-solutions .term-card__arrow,
  .page-reviews .term-card__arrow,
  .page-problems .term-card__arrow{
    grid-column:2;
    justify-self:end;
    align-self:end;
    margin-top:-6px;
  }
}

