:root{
  --blue:#04065f;
  --blue2:#0b3f8a;
  --text:#172033;
  --muted:#687386;
  --soft:#f5f7fb;
  --line:#e4e8f0;
  --dark:#071126;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:#fff;
}
.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.layout,
.content-top{
  position:relative;
  z-index:1;
}
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(8px);
  box-shadow:0 8px 28px rgba(10,20,50,.08);
}
.nav{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo img{
  max-height:70px;
  display:block;
}
.menu{
  display:flex;
  gap:34px;
  align-items:center;
}
.menu a{
  color:var(--blue);
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.menu a:hover,
.menu a.active{color:var(--blue2)}
.menu-btn{
  display:none;
  border:0;
  background:var(--blue);
  color:#fff;
  width:46px;
  height:46px;
  font-size:25px;
  cursor:pointer;
}
.hero{
  position:relative;
  min-height:720px;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding-top:86px;
}
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity 1100ms ease;
  background-size:cover;
  background-position:center;
}
.slide.active{opacity:1}
.slide1{background-image:url("/images/poz1.webp")}
.slide2{background-image:url("/images/poz2.webp")}
.hero:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(90deg,rgba(4,6,95,.82) 0%,rgba(4,6,95,.62) 36%,rgba(4,6,95,.34) 72%,rgba(4,6,95,.22) 100%);
}
.hero:after,
.subhero:after{
  content:"";
  position:absolute;
  left:-160px;
  top:90px;
  width:540px;
  height:540px;
  z-index:3;
  border:1px solid rgba(255,255,255,.16);
  border-radius:50%;
}
.hero-content{
  position:relative;
  z-index:5;
  max-width:680px;
  color:#fff;
  padding:80px 0;
}
.kicker{
  display:inline-flex;
  padding:9px 15px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  margin-bottom:26px;
}
.hero h1,
.subhero h1{
  margin:0 0 24px;
  font-size:56px;
  line-height:1.08;
  letter-spacing:-.03em;
  font-weight:800;
}
.hero p,
.subhero p{
  margin:0 0 34px;
  max-width:640px;
  font-size:18px;
  line-height:1.75;
  color:rgba(255,255,255,.9);
}
.btns{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 26px;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  border:0;
}
.btn-primary{
  background:#fff;
  color:var(--blue);
}
.btn-primary:hover{background:#eaf0ff}
.btn-blue{
  background:var(--blue);
  color:#fff;
}
.btn-blue:hover{background:var(--blue2)}
.btn-secondary{
  color:#fff;
  border:1px solid rgba(255,255,255,.45);
}
.btn-secondary:hover{background:rgba(255,255,255,.12)}
.slider-dots{
  position:absolute;
  z-index:6;
  left:50%;
  bottom:32px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
}
.slider-dots button{
  width:11px;
  height:11px;
  border-radius:50%;
  border:1px solid #fff;
  background:transparent;
  cursor:pointer;
}
.slider-dots button.active{background:#fff}
.subhero{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  padding-top:86px;
  overflow:hidden;
  color:#fff;
  background-size:cover;
  background-position:center;
}
.subhero:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(90deg,rgba(4,6,95,.86) 0%,rgba(4,6,95,.64) 46%,rgba(4,6,95,.18) 100%);
}
.subhero .container{position:relative;z-index:5}
.subhero-about{background-image:url("/images/poz3.webp")}
.subhero-services{background-image:url("/images/poz4c.webp")}
.subhero-contact{background-image:url("/images/poz5.webp")}
.section{
  padding:90px 0;
}
.section-soft{background:var(--soft)}
.section-tight{padding:70px 0}
.center{text-align:center}
.eyebrow{
  color:var(--blue2);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
  font-weight:800;
  display:block;
  margin-bottom:14px;
}
h2{
  margin:0 0 22px;
  color:var(--blue);
  font-size:38px;
  line-height:1.2;
  letter-spacing:-.03em;
}
h3{
  color:var(--blue);
  font-size:22px;
  margin:0 0 14px;
}
.lead{
  max-width:850px;
  margin:0 auto 16px;
  color:var(--muted);
  line-height:1.8;
  font-size:17px;
}
.text p{
  color:var(--muted);
  line-height:1.85;
  font-size:17px;
  margin:0 0 18px;
}
.two-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.card-grid.two{grid-template-columns:repeat(2,1fr)}
.card{
  background:#fff;
  border:1px solid var(--line);
  padding:34px;
  min-height:245px;
  transition:.25s ease;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(20,40,80,.12);
}
.card p{
  color:var(--muted);
  line-height:1.75;
  margin:0;
}
.icon{
  width:54px;
  height:54px;
  border-radius:14px;
  background:#eef4ff;
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:24px;
}
.image-card{
  background:#fff;
  border:1px solid var(--line);
  overflow:hidden;
  transition:.25s ease;
}
.image-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(20,40,80,.12);
}
.image-card .img{height:240px}
.image-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.image-card .content{padding:28px}
.image-card strong{
  display:block;
  color:var(--blue);
  font-size:22px;
  margin-bottom:14px;
}
.image-card span{
  display:block;
  color:var(--muted);
  line-height:1.75;
}
.blue-section{
  background:linear-gradient(135deg,#04065f,#0b3f8a);
  color:#fff;
  padding:82px 0;
}
.blue-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:70px;
  align-items:center;
}
.blue-section h2{color:#fff}
.blue-section p{
  color:rgba(255,255,255,.82);
  line-height:1.8;
  font-size:17px;
}
.checks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:25px;
}
.checks div{
  padding:16px 18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}
.timeline{
  display:grid;
  gap:18px;
}
.timeline-item{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:24px;
  padding:24px;
  border:1px solid var(--line);
  background:#fff;
}
.timeline-item strong{color:var(--blue);font-size:20px}
.timeline-item p{margin:0;color:var(--muted);line-height:1.75}
.contact-box{
  background:#fff;
  border:1px solid var(--line);
  padding:36px;
}
.contact-box p,
.contact-box a{
  color:var(--muted);
  line-height:1.8;
  font-size:17px;
}
.contact-box a{color:var(--blue2);font-weight:700;text-decoration:none}
.footer{
  background:#071126;
  color:rgba(255,255,255,.68);
  padding:54px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:55px;
}
.footer img{
  max-height:58px;
  filter:brightness(0) invert(1);
  margin-bottom:18px;
}
.footer h4{
  color:#fff;
  margin:0 0 16px;
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.footer p,
.footer a{
  color:rgba(255,255,255,.68);
  font-size:15px;
  line-height:1.8;
  text-decoration:none;
}
.copy{
  margin-top:42px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:14px;
  text-align:center;
}
@media(max-width:900px){
  .menu-btn{display:block;
   z-index:10000002;
   position:relative;}
  .menu{
    display:none;
    position:absolute;
    top:86px;
    left:0;
    right:0;
	 z-index:10000;
    background:#fff;
    padding:25px;
    flex-direction:column;
    align-items:flex-start;
    box-shadow:0 18px 35px rgba(0,0,0,.12);
  }
  .nav{
    position:relative;
	z-index:10002;
  }

  .menu.open{display:flex !important;}
  .hero{min-height:650px}
  .hero:before{background:linear-gradient(90deg,rgba(4,6,95,.86),rgba(4,6,95,.58))}
  .hero h1,.subhero h1{font-size:42px}
  .two-grid,.card-grid,.card-grid.two,.blue-grid,.footer-grid{grid-template-columns:1fr}
  .checks{grid-template-columns:1fr}
  .timeline-item{grid-template-columns:1fr}
}
@media(max-width:560px){
  .container{padding:0 18px}
  .nav{height:74px}
  .logo img{max-height:48px}
  .menu{top:74px}
  .hero{padding-top:74px;min-height:610px}
  .subhero{padding-top:74px;min-height:350px}
  .hero-content{padding:55px 0}
  .hero h1,.subhero h1{font-size:32px}
  .hero p,.subhero p{font-size:16px}
  h2{font-size:30px}
  .section{padding:65px 0}
  .card,.contact-box{padding:28px}
  .btn{width:100%}
}

.tc-cookies-page{
  background:#f5f7fb;
  padding:150px 20px;
  color:#172033;
}

.tc-cookies-container{
  max-width:1050px;
  margin:0 auto;
}

.tc-cookies-header{
  text-align:center;
  margin-bottom:36px;
}

.tc-cookies-header span{
  display:inline-block;
  margin-bottom:12px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#1b66e5;
}

.tc-cookies-header h1{
  margin:0 0 14px;
  font-size:clamp(38px,5vw,64px);
  line-height:1;
  color:#0b1220;
}

.tc-cookies-header p{
  margin:0 auto;
  max-width:650px;
  font-size:18px;
  line-height:1.7;
  color:#5e6a7d;
}

.tc-cookies-card{
  background:#fff;
  border-radius:26px;
  padding:46px;
  box-shadow:0 24px 70px rgba(15,31,61,.10);
  border:1px solid rgba(20,40,80,.08);
}

.tc-cookies-card p{
  font-size:17px;
  line-height:1.8;
  color:#405066;
  margin:0 0 18px;
}

.tc-cookies-card h2{
  margin:38px 0 16px;
  font-size:28px;
  color:#0b1220;
}

.tc-cookie-list{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  margin-top:22px;
}

.tc-cookie-item{
  background:#f7f9fd;
  border:1px solid #e4e9f2;
  border-radius:18px;
  padding:22px 24px;
}

.tc-cookie-item h3{
  margin:0 0 8px;
  font-size:19px;
  color:#10213f;
}

.tc-cookie-item h3 small{
  font-weight:500;
  color:#68758a;
}

.tc-cookie-item p{
  margin:0;
  font-size:16px;
  line-height:1.7;
}

@media(max-width:768px){
  .tc-cookies-page{
    padding:60px 16px;
  }

  .tc-cookies-card{
    padding:28px 22px;
    border-radius:20px;
  }

  .tc-cookies-card h2{
    font-size:24px;
  }

  .tc-cookies-card p{
    font-size:16px;
  }
}

.header{
  position:fixed;
  z-index:1000000;
}

.nav{
  position:relative;
  z-index:1000001;
}

.menu-btn{
  position:relative;
  z-index:1000002;
}

@media(max-width:900px){
  .menu{
    z-index:1000001;
  }

  .menu.open{
    display:flex !important;
  }
}