
:root{
  --bg:#f3f6fb;
  --surface:#ffffff;
  --surface-soft:#f8fbff;
  --text:#111827;
  --muted:#66758b;
  --line:#dce3ee;
  --line-dark:rgba(255,255,255,.12);
  --accent:#cf2e2e;
  --accent-dark:#b82626;
  --blue:#4060d8;
  --dark:#162032;
  --dark-2:#0f1728;
  --shadow-sm:0 4px 16px rgba(30,41,59,.04);
  --shadow-md:0 16px 40px rgba(15,23,42,.08);
  --shadow-lg:0 24px 60px rgba(15,23,42,.14);
  --radius-sm:16px;
  --radius-md:24px;
  --radius-lg:32px;
  --container:1280px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}
img{display:block;max-width:100%}
a{color:inherit}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.logo{
  text-decoration:none;
  color:var(--accent);
  font-size:38px;
  font-weight:700;
  font-style:italic;
  letter-spacing:-.03em;
  white-space:nowrap;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  flex:1;
}
.nav a{
  text-decoration:none;
  color:#4a5568;
  font-size:15px;
  font-weight:500;
}
.nav a.active,.nav a:hover{color:var(--accent)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  text-decoration:none;
  transition:.18s ease;
  font-weight:600;
  font-size:15px;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 24px rgba(207,46,46,.18);
}
.btn-primary:hover{background:var(--accent-dark)}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}
.btn-secondary:hover{background:#fafcff}
.hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:linear-gradient(135deg,#f8fbff 0%,#eef4fb 100%);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(207,46,46,.08), transparent 24%),
    radial-gradient(circle at left, rgba(64,96,216,.08), transparent 28%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:42px;
  align-items:start;
  padding:84px 0 94px;
}
.badge{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:12px 18px;
  color:#4a5568;
  font-size:14px;
  box-shadow:var(--shadow-sm);
}
.hero h1{
  margin:24px 0 0;
  max-width:860px;
  font-size:64px;
  line-height:1.03;
  font-weight:600;
  letter-spacing:-.05em;
}
.hero h1 .accent{display:block;color:var(--accent)}
.hero-text{
  margin:24px 0 0;
  max-width:720px;
  color:#586579;
  font-size:20px;
  line-height:1.7;
}
.hero-actions{
  margin-top:32px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}
.stats{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow-sm);
}
.stat strong{
  display:block;
  font-size:28px;
  line-height:1.15;
  margin-bottom:10px;
  font-weight:600;
}
.stat span{
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.media-grid{display:grid;gap:20px}
.hero-big{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:32px;
  box-shadow:var(--shadow-lg);
}
.hero-small-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.hero-small-grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow-md);
}
.section{
  padding:84px 0;
}
.section-dark{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  max-width:780px;
  margin-bottom:34px;
}
.eyebrow{
  display:inline-flex;
  margin-bottom:14px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--blue);
}
.section-head h2{
  margin:0;
  font-size:52px;
  line-height:1.06;
  letter-spacing:-.04em;
  font-weight:600;
}
.section-head p{
  margin:18px 0 0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}
.cards-3,.cards-2,.cards-4{
  display:grid;
  gap:24px;
}
.cards-3{grid-template-columns:repeat(3,1fr)}
.cards-2{grid-template-columns:repeat(2,1fr)}
.cards-4{grid-template-columns:repeat(4,1fr)}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:32px;
  box-shadow:var(--shadow-sm);
}
.card h3{
  margin:0;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.03em;
  font-weight:600;
}
.card p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}
.card .small{
  font-size:14px;
  line-height:1.7;
}
.card-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#eef3ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom:18px;
}
.feature-list,.policy-list{
  display:grid;
  gap:16px;
}
.feature{
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:1px solid var(--line);
  background:var(--surface-soft);
  border-radius:22px;
  padding:18px 20px;
}
.feature .dot{
  width:12px;
  height:12px;
  margin-top:8px;
  border-radius:999px;
  background:var(--accent);
  flex:0 0 12px;
}
.feature p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}
.vacancy-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.vacancy{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow-sm);
}
.tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#eef3ff;
  color:var(--blue);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.vacancy h3{
  margin:16px 0 0;
  font-size:28px;
  line-height:1.14;
  letter-spacing:-.03em;
}
.meta{
  margin-top:16px;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.search-box{
  max-width:520px;
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:16px 20px;
  box-shadow:var(--shadow-sm);
  margin:34px 0 0;
}
.search-box input{
  width:100%;
  border:none;
  background:transparent;
  outline:none;
  font:inherit;
  color:var(--text);
}
.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.dark-panel{
  background:linear-gradient(135deg,var(--dark) 0%,var(--dark-2) 100%);
  color:#fff;
  border-radius:34px;
  padding:34px;
  box-shadow:var(--shadow-lg);
}
.dark-panel .eyebrow{color:rgba(255,255,255,.68)}
.dark-panel h3{
  margin:0;
  font-size:36px;
  line-height:1.12;
  letter-spacing:-.04em;
}
.dark-panel p{
  margin:18px 0 0;
  color:rgba(255,255,255,.76);
  line-height:1.75;
}
.steps{
  display:grid;
  gap:16px;
  margin-top:28px;
}
.step{
  border:1px solid var(--line-dark);
  background:rgba(255,255,255,.05);
  border-radius:24px;
  padding:18px 18px 18px 20px;
}
.step-number{
  width:40px;height:40px;border-radius:999px;background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:700;margin-bottom:12px
}
.step p{margin:0;color:rgba(255,255,255,.78);font-size:14px;line-height:1.75}
.image-cover{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
  border-radius:34px;
  box-shadow:var(--shadow-lg);
}
.cta-wrap{
  border-radius:38px;
  background:linear-gradient(135deg,var(--dark) 0%,var(--dark-2) 100%);
  color:#fff;
  padding:38px;
  box-shadow:var(--shadow-lg);
}
.cta-grid{
  display:grid;
  gap:32px;
  grid-template-columns:1.05fr .95fr;
  align-items:start;
}
.cta-wrap h2{
  margin:18px 0 0;
  font-size:52px;
  line-height:1.06;
  letter-spacing:-.05em;
}
.cta-wrap p{
  margin:20px 0 0;
  max-width:680px;
  color:rgba(255,255,255,.76);
  font-size:17px;
  line-height:1.8;
}
.contact-list{
  margin-top:26px;
  display:grid;
  gap:12px;
}
.contact-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  border-radius:22px;
  padding:16px 18px;
}
.contact-row .dot{
  width:12px;height:12px;border-radius:999px;background:#93c5fd;margin-top:8px;flex:0 0 12px
}
.contact-row small{
  display:block;
  color:rgba(255,255,255,.55);
  margin-bottom:6px;
  font-size:12px;
}
.contact-row strong{
  font-size:16px;
  line-height:1.6;
}
.form-card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.07);
  backdrop-filter:blur(10px);
  border-radius:30px;
  padding:26px;
}
.form-card h3{
  margin:0 0 18px;
  font-size:28px;
  letter-spacing:-.03em;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.full{grid-column:1 / -1}
input,textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  border-radius:18px;
  padding:16px 18px;
  font:inherit;
  outline:none;
}
textarea{min-height:140px;resize:vertical}
.checkbox{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-size:12px;
  line-height:1.7;
  color:rgba(255,255,255,.76);
}
.checkbox.light{color:var(--muted)}
.checkbox input{width:16px;height:16px;margin-top:4px;accent-color:var(--accent)}
.checkbox a,.checkbox button{
  color:inherit;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:4px;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}
.footer{
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:28px 0 96px;
  color:var(--muted);
  font-size:14px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.footer-links a{
  text-decoration:none;
  color:var(--muted);
}
.chat-toggle{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:1100;
}
.chat-box{
  position:fixed;
  right:22px;
  bottom:90px;
  width:380px;
  max-width:calc(100% - 16px);
  border-radius:30px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  z-index:1101;
  display:none;
}
.chat-box.active{display:block}
.chat-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:var(--dark);
  color:#fff;
  padding:18px 20px;
}
.chat-head strong{display:block;font-size:14px}
.chat-head span{display:block;margin-top:4px;font-size:12px;color:rgba(255,255,255,.64)}
.chat-close{
  border:none;
  background:rgba(255,255,255,.1);
  color:#fff;
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
  font-size:12px;
}
.chat-body{
  display:grid;
  gap:14px;
  padding:18px;
}
.chat-msg{
  max-width:85%;
  border:1px solid var(--line);
  background:#f7faff;
  color:#586579;
  border-radius:20px 20px 20px 8px;
  padding:14px 16px;
  font-size:14px;
  line-height:1.7;
}
.chat-note{
  color:#7a879a;
  font-size:12px;
  line-height:1.65;
}
.page-hero{
  border-bottom:1px solid var(--line);
  background:linear-gradient(135deg,#f8fbff 0%,#f2f6fd 100%);
}
.page-hero-inner{
  padding:56px 0 58px;
}
.page-hero h1{
  margin:16px 0 0;
  font-size:56px;
  line-height:1.06;
  letter-spacing:-.05em;
  font-weight:600;
}
.page-hero p{
  margin:20px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}
.policy-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:34px;
  box-shadow:var(--shadow-sm);
}
.policy-block h3{
  margin:0;
  font-size:24px;
  line-height:1.2;
  letter-spacing:-.03em;
}
.policy-block p{
  margin:12px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}
@media (max-width:1100px){
  .hero-inner,.grid-2,.cta-grid,.cards-3,.cards-4,.vacancy-grid{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:repeat(2,1fr)}
  .cards-2{grid-template-columns:1fr}
  .image-cover{min-height:380px}
  .nav{display:none}
}
@media (max-width:820px){
  .hero-inner,.grid-2,.cta-grid,.cards-3,.cards-4,.vacancy-grid,.hero-small-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .hero h1,.page-hero h1{font-size:42px}
  .hero-text,.page-hero p{font-size:17px}
  .section-head h2,.cta-wrap h2{font-size:36px}
  .form-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;align-items:flex-start}
  .chat-toggle{left:12px;right:12px}
  .chat-box{left:12px;right:12px;width:auto;bottom:84px}
}
