@font-face{font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;src:url(../fonts/manrope-cyrillic-ext.woff2) format('woff2');unicode-range:U+0460-052F,U+1C80-1C8A,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}
@font-face{font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;src:url(../fonts/manrope-cyrillic.woff2) format('woff2');unicode-range:U+0301,U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}
@font-face{font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;src:url(../fonts/manrope-greek.woff2) format('woff2');unicode-range:U+0370-0377,U+037A-037F,U+0384-038A,U+038C,U+038E-03A1,U+03A3-03FF}
@font-face{font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;src:url(../fonts/manrope-vietnamese.woff2) format('woff2');unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1EA0-1EF9,U+20AB}
@font-face{font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;src:url(../fonts/manrope-latin-ext.woff2) format('woff2');unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}
@font-face{font-family:'Manrope';font-style:normal;font-weight:200 800;font-display:swap;src:url(../fonts/manrope-latin.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}

:root{
  --red:#E30613;
  --red-dark:#C00511;
  --red-soft:#FDF2F3;
  --ink:#232427;
  --ink-2:#3C3D40;
  --muted:#55565A;
  --muted-2:#77787B;
  --grey:#A5A6AA;
  --line:#E5E5E7;
  --line-2:#D6D7DA;
  --fill:#F4F4F5;
  --fill-2:#E7E7E9;
  --footer:#58595B;
  --wrap:1200px;
  --pad:32px;
}

*,*::before,*::after{box-sizing:border-box}

html{
  scrollbar-gutter:stable;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  background:#fff;
  color:var(--ink);
  font-family:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  -webkit-font-smoothing:antialiased;
}

.lang{display:none;flex:1;flex-direction:column}
.lang.is-on{display:flex}

.page{display:none}
.page.is-on{display:flex;flex-direction:column;flex:1}

a{color:var(--ink);text-decoration:none}
a:hover{color:var(--red)}
p,h1,h2,h3{margin:0;overflow-wrap:break-word}
ul{margin:0;padding:0;list-style:none}
img{max-width:100%;display:block}
::selection{background:var(--red);color:#fff}

:focus-visible{outline:2px solid var(--red);outline-offset:3px;border-radius:4px}

.wrap{box-sizing:content-box;max-width:var(--wrap);margin:0 auto;padding-left:var(--pad);padding-right:var(--pad)}

.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}

.skip-link{position:absolute;left:-9999px;top:0;z-index:100;background:var(--red);color:#fff;padding:10px 18px;border-radius:0 0 10px 0;font-weight:700}
.skip-link:focus{left:0;color:#fff}

.rule{display:block;height:3px;border-radius:2px;background:var(--red)}
.rule-sm{width:56px;margin-top:10px}
.rule-md{width:68px;margin-top:12px}
.rule-lg{width:92px;height:4px;margin-top:16px}

.dot{width:7px;height:7px;border-radius:50%;background:var(--red);margin-top:8px;flex-shrink:0}
.dot-sm{width:5px;height:5px;border-radius:50%;background:var(--red);margin-top:7px;flex-shrink:0}

/* ---------- header ---------- */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

.site-header .wrap{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:inline-flex;
  align-items:flex-start;
  gap:9px;
  font-size:29px;
  font-weight:800;
  color:var(--red);
  letter-spacing:-.02em;
  white-space:nowrap;
}
.brand svg{margin-top:3px;flex-shrink:0}
.brand:hover{color:var(--red)}

.main-nav{display:flex;gap:38px}

.nav-a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  padding-top:7px;
  font-size:15px;
  font-weight:600;
  color:var(--ink);
  transition:color .15s ease;
}
.nav-a:hover{color:var(--red)}
.nav-a .bar{display:block;width:22px;height:3px;border-radius:2px;background:transparent}
.nav-a[aria-current="page"]{color:var(--red)}
.nav-a[aria-current="page"] .bar{background:var(--red)}

.lang-switch{
  display:flex;
  gap:6px;
  align-items:center;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}
.lang-switch .sep{color:#C9CACD}
.lang-switch .on{color:var(--red)}
.lang-switch a{color:var(--grey)}
.lang-switch a:hover{color:var(--red)}

/* ---------- decorative texture ---------- */
/* Поведение согласовано с заказчиком: до 1320px ширина фиксированная,
   в диапазоне 1025-1320 плавно сужается, ниже 1025 скрывается. */

.deco{
  position:absolute;
  background:url(../img/texture-red.png) no-repeat right top / cover;
  pointer-events:none;
}

.deco-hero{top:-114px;right:0;bottom:-40px;width:520px;opacity:.55}
.deco-head{top:-60px;right:max(32px,calc(50% - 568px));width:480px;height:420px;opacity:.4}

.hero-inner,.page-head .wrap{position:relative}

@media (max-width:1320px) and (min-width:1025px){
  .deco-hero{width:calc(100vw - 804px)}
}

@media (max-width:1200px) and (min-width:1025px){
  .deco-head{width:calc(100vw - 724px)}
}

@media (max-width:1024px){
  .deco-hero,.deco-head{display:none}
}

/* ---------- home hero ---------- */

.hero{position:relative;overflow:hidden}
.hero .wrap{position:relative;padding-top:84px;padding-bottom:24px}
.hero-inner{position:relative}

.hero-lead{max-width:520px;font-size:17px;line-height:1.6;color:var(--muted)}
.hero-lead .brand-accent{color:var(--red);font-weight:700}

.hero h1{
  margin-top:28px;
  max-width:720px;
  font-size:46px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--red);
  text-wrap:pretty;
}

.hero-sub{margin-top:24px;max-width:480px;font-size:17px;line-height:1.6}

.hero-cta{margin-top:40px}

.btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
  background:var(--red);
  color:#fff;
  font-family:inherit;
  font-weight:700;
  font-size:16px;
  padding:15px 34px;
  border:none;
  border-radius:10px;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(227,6,19,.22);
  transition:background .15s ease,box-shadow .15s ease;
}
.btn:hover{background:var(--red-dark);color:#fff;box-shadow:0 8px 22px rgba(227,6,19,.3)}
.btn[disabled]{opacity:.6;cursor:default;box-shadow:none}

.facts{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.fact{
  display:flex;
  align-items:center;
  gap:16px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:20px 22px;
  background:rgba(255,255,255,.9);
}
.fact svg{flex-shrink:0}
.fact span{font-size:14.5px;line-height:1.45;font-weight:600}

/* ---------- home cards ---------- */

.section{padding-top:32px;padding-bottom:88px}

.cards{
  border-top:1px solid var(--line);
  padding-top:36px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:26px;
  display:flex;
  flex-direction:column;
  transition:box-shadow .18s ease,transform .18s ease;
}
.card:hover{box-shadow:0 10px 28px rgba(35,36,39,.08);transform:translateY(-2px);color:var(--ink)}
.card-title{font-size:18px;font-weight:800}
.card-text{margin-top:16px;font-size:14px;line-height:1.55;color:var(--muted)}
.card-more{margin-top:auto;padding-top:18px;font-size:14px;font-weight:700;color:var(--red)}

/* ---------- inner page head ---------- */

.page-head{position:relative;overflow:hidden;border-bottom:1px solid var(--line)}
.page-head .wrap{position:relative;padding-top:64px;padding-bottom:44px}
.page-head h1{font-size:42px;font-weight:800;letter-spacing:-.02em}
.page-head p{margin-top:22px;max-width:640px;font-size:16.5px;line-height:1.6;color:var(--muted)}

.section-inner{padding-top:48px;padding-bottom:88px}

.section-title{
  margin-top:52px;
  font-size:24px;
  font-weight:800;
  letter-spacing:-.01em;
}

/* ---------- about ---------- */

.statements{display:grid;grid-template-columns:1fr 1fr;gap:0 56px}
.statement{padding:18px 0;border-bottom:1px solid var(--line);display:flex;gap:14px}
.statement p{font-size:15.5px;line-height:1.6}
.statements .statement:last-child,
.statements .statement:nth-last-child(2){border-bottom:none}

/* ---------- expertise ---------- */

.practices{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}

.practice{
  border:1px solid var(--line);
  border-radius:14px;
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.practice-head{display:flex;align-items:center;gap:14px}
.practice-head h3{font-size:17px;font-weight:800;line-height:1.3;display:flex;flex-direction:column;align-items:flex-start}

.icon-box{
  width:48px;
  height:48px;
  border-radius:12px;
  background:var(--fill);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.bullets{display:flex;flex-direction:column;gap:9px;font-size:14px;line-height:1.5;color:var(--ink-2)}
.bullets li{display:flex;gap:10px}

/* ---------- team ---------- */

.team-top{display:grid;grid-template-columns:240px 1fr;gap:20px;align-items:stretch}

.team-count{
  border:1px solid var(--line);
  border-radius:14px;
  padding:26px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:8px;
}
.team-count .num{margin-top:10px;font-size:34px;font-weight:800;color:var(--red);line-height:1}
.team-count .cap{font-size:14.5px;line-height:1.5;color:var(--muted)}

.team-notes{
  border:1px solid var(--line);
  border-radius:14px;
  padding:30px 34px;
  display:flex;
  flex-direction:column;
  gap:18px;
  justify-content:center;
}
.team-notes .row{display:flex;gap:14px}
.team-notes p{font-size:15.5px;line-height:1.6}

.trio{margin-top:24px;display:grid;grid-template-columns:repeat(3,1fr);gap:20px}

.qual{border:1px solid var(--line);border-radius:14px;padding:24px 26px}
.qual .key{font-size:22px;font-weight:800;color:var(--red)}
.qual .val{margin-top:8px;font-size:14.5px;line-height:1.55;color:var(--muted)}

.role{
  border:1px solid var(--line);
  border-radius:14px;
  padding:24px 26px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.role .name{font-size:17px;font-weight:800}
.role .text{font-size:14.5px;line-height:1.55;color:var(--muted)}

/* ---------- contacts ---------- */

.panel{border:1px solid var(--line);border-radius:14px;padding:30px}
.panel h3{font-size:19px;font-weight:800}

.contact-panel{max-width:720px}

.contact-links{margin-top:24px;display:flex;flex-direction:column;gap:14px}

.contact-link{
  display:flex;
  align-items:center;
  gap:18px;
  border:1px solid var(--line);
  border-radius:12px;
  padding:18px 22px;
  transition:border-color .15s ease,box-shadow .15s ease,transform .15s ease;
}
.contact-link:hover{
  border-color:var(--red);
  box-shadow:0 8px 22px rgba(35,36,39,.08);
  transform:translateY(-1px);
  color:var(--ink);
}
.contact-link .lines{display:flex;flex-direction:column;gap:3px;min-width:0}
.contact-link .label{font-size:13px;font-weight:700;color:var(--muted-2)}
.contact-link .value{font-size:16.5px;font-weight:700;color:var(--red);word-break:break-word}


/* ---------- footer ---------- */

.site-footer{margin-top:auto}

.footer-main{background:#fff;border-top:1px solid var(--line)}
.footer-main .wrap{
  padding-top:56px;
  padding-bottom:48px;
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:40px;
}

.footer-col{display:flex;flex-direction:column;gap:12px;align-items:flex-start}
.footer-col h2{margin-bottom:4px;font-size:15px;font-weight:800;color:var(--ink)}
.footer-col a{color:var(--muted);font-size:14px}
.footer-col a:hover{color:var(--red);text-decoration:underline;text-underline-offset:3px}

.footer-brand{gap:14px}
.footer-brand a{font-size:22px;font-weight:800;color:var(--red);letter-spacing:-.02em}
.footer-brand a:hover{color:var(--red);text-decoration:none}
.footer-brand p{font-size:14px;line-height:1.6;color:var(--muted);max-width:240px}

.footer-pair{display:flex;gap:8px;align-items:baseline}
.footer-pair .k{color:var(--grey);font-size:14px}
.footer-pair a{color:var(--red);font-weight:700}
.footer-pair a:hover{color:var(--red-dark)}

.footer-value{display:flex;gap:10px;align-items:center;color:var(--muted);font-size:14px}
.footer-value i{width:5px;height:5px;border-radius:50%;background:var(--red);flex-shrink:0}

.footer-bottom{position:relative;background:var(--footer);color:#fff;overflow:hidden}
.footer-bottom .deco-foot{
  position:absolute;
  inset:0;
  background:url(../img/texture-dark.png) no-repeat right bottom/cover;
  opacity:.5;
  filter:invert(1);
  pointer-events:none;
}
.footer-bottom .wrap{
  position:relative;
  padding-top:18px;
  padding-bottom:22px;
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:20px;
  font-size:13.5px;
  color:rgba(255,255,255,.85);
}

/* ---------- 404 ---------- */

.notfound{padding:120px 0 140px;text-align:center}
.notfound .code{font-size:64px;font-weight:800;color:var(--red);letter-spacing:-.03em;line-height:1}
.notfound h1{margin-top:18px;font-size:28px;font-weight:800}
.notfound p{margin-top:14px;font-size:16px;line-height:1.6;color:var(--muted)}
.notfound .btn{margin-top:32px}

/* ---------- adaptive ---------- */

@media (max-width:1100px){
  .cards{grid-template-columns:repeat(2,1fr)}
  .practices{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:1000px){
  .main-nav{gap:26px}
  .site-header .wrap{gap:18px}
  .brand{font-size:26px}
}

@media (max-width:800px){
  :root{--pad:24px}
  .site-header .wrap{height:auto;flex-wrap:wrap;padding-top:12px;padding-bottom:0}
  .brand{font-size:23px;order:1}
  .lang-switch{order:2}
  .main-nav{
    order:3;
    width:100%;
    gap:26px;
    overflow-x:auto;
    scrollbar-width:none;
  }
  .main-nav::-webkit-scrollbar{display:none}
  .nav-a{white-space:nowrap;padding-bottom:2px}

  .hero .wrap{padding-top:56px}
  .hero h1{font-size:36px}
  .page-head h1{font-size:34px}
  .page-head .wrap{padding-top:48px;padding-bottom:36px}

  .facts{grid-template-columns:1fr}
  .statements{grid-template-columns:1fr;gap:0}
  .statements .statement:nth-last-child(2){border-bottom:1px solid var(--line)}
  .team-top{grid-template-columns:1fr}
  .footer-main .wrap{grid-template-columns:repeat(2,1fr);gap:36px 32px}
}

@media (max-width:700px){
  .cards{grid-template-columns:1fr}
  .practices{grid-template-columns:1fr}
  .trio{grid-template-columns:1fr}
  .section,.section-inner{padding-bottom:64px}
  .hero h1{font-size:32px}
  .page-head h1{font-size:30px}
  .team-notes{padding:24px}
  .panel{padding:24px}
  .btn{padding:14px 28px}
}

@media (max-width:520px){
  .contact-link{align-items:flex-start;gap:14px;flex-wrap:wrap;padding:16px 18px}
  .contact-link .value{font-size:15px}
  :root{--pad:20px}
  .footer-main .wrap{grid-template-columns:1fr;gap:32px}
  .footer-bottom .wrap{flex-direction:column;gap:6px}
  .hero h1{font-size:clamp(22px,7.2vw,29px)}
  .page-head h1{font-size:clamp(23px,7.4vw,30px)}
}

@media (prefers-reduced-motion:reduce){
  *{transition-duration:.01ms!important;animation-duration:.01ms!important}
  .card:hover{transform:none}
}

@media print{
  .site-header,.deco,.deco-foot{display:none}
  body{color:#000}
}
