:root{
  --blue:#0b49c9;
  --blue2:#0a41b6;
  --bg:#f4f7ff;
  --card:#eaf0ff;
  --text:#0f172a;
  --muted:#334155;
  --white:#fff;
  --radius:22px;
  --shadow:0 10px 30px rgba(2, 20, 60, .10);
  --max:1180px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Roboto,system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:#fff;
}

/* container */
.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 18px;
}

/* ===== Header ===== */
.pd-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--blue);
  border-bottom:1px solid rgba(255,255,255,.18);
}
.pd-header__row{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.pd-logo{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
}
.pd-logo img{
  height:38px;
  width:auto;
  display:block;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,.12));
}
.pd-nav{
  display:flex;
  align-items:center;
  gap:46px;
}
.pd-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:16px;
  opacity:.95;
}
.pd-nav a:hover{opacity:1}

/* ===== Hero ===== */
.pd-hero{
  background:linear-gradient(180deg, #dfeeff 0%, #ffffff 55%);
  padding:54px 0 30px;
}
.pd-hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:34px;
  align-items:center;
  min-height:520px;
}
.pd-hero h1{
  margin:0 0 14px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.5px;
  font-weight:800;
}
.pd-hero p{
  margin:0 0 22px;
  font-size:16px;
  line-height:1.6;
  color:var(--muted);
  font-weight:500;
  max-width:560px;
}
.pd-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:48px;
  padding:0 22px;
  background:var(--blue);
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 24px rgba(11,73,201,.20);
}
.pd-btn:hover{background:var(--blue2)}
.pd-hero__right{
  position:relative;
  display:flex;
  justify-content:flex-end;
}
.pd-hero__right::before,
.pd-hero__right::after{
  content:"";
  position:absolute;
  background:#cfe0ff;
  border-radius:12px;
  opacity:.65;
}
.pd-hero__right::before{
  width:260px;height:260px;
  right:260px; top:40px;
  border-radius:18px;
}
.pd-hero__right::after{
  width:170px;height:170px;
  right:170px; top:120px;
  border-radius:14px;
  opacity:.45;
}
.pd-hero__img{
  width:min(520px, 100%);
  height:auto;
  display:block;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 18px 40px rgba(0,0,0,.12));
}

/* ===== Blue section wrapper ===== */
.pd-blue{
  background:var(--blue);
  color:#fff;
  padding:44px 0 56px;
}
.pd-blue h2{
  margin:0 0 10px;
  text-align:center;
  font-size:26px;
  font-weight:800;
}
.pd-blue .pd-sub{
  text-align:center;
  margin:0 auto 34px;
  max-width:840px;
  opacity:.95;
  font-weight:500;
}

/* ===== About cards 2x3 ===== */
.pd-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
  margin-top:26px;
}
.pd-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:28px 26px 26px;
  box-shadow:var(--shadow);
  color:var(--text);
  min-height:190px;
  position:relative;
}
.pd-ic{
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(11,73,201,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
}
.pd-ic img{width:26px;height:26px;display:block}
.pd-card h3{
  margin:0 0 10px;
  text-align:center;
  font-size:22px;
  font-weight:800;
}
.pd-card p{
  margin:0;
  text-align:center;
  color:#1f334f;
  font-weight:500;
  line-height:1.5;
}

/* ===== Services section (light) ===== */
.pd-services{
  background:var(--bg);
  padding:52px 0 64px;
}
.pd-services h2{
  margin:0 0 8px;
  text-align:center;
  font-size:30px;
  font-weight:900;
}
.pd-services .pd-sub2{
  text-align:center;
  max-width:860px;
  margin:0 auto 34px;
  color:var(--muted);
  font-weight:500;
}
.pd-sgrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
}
.pd-scard{
  background:#fff;
  border:2px solid rgba(11,73,201,.55);
  border-radius:18px;
  padding:22px 22px 18px;
  box-shadow:0 10px 28px rgba(2, 20, 60, .06);
}
.pd-scard h3{
  margin:0 0 12px;
  font-size:20px;
  font-weight:900;
  color:#1b355a;
}
.pd-scard p{
  margin:0 0 14px;
  color:var(--muted);
  font-weight:500;
  line-height:1.55;
  min-height:74px;
}
.pd-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:8px;
  color:#0f172a;
  font-weight:600;
}
.pd-meta span{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:600;
}
.pd-meta i{
  width:18px;height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:.8;
}

/* ===== Contacts (blue + white card) ===== */
.pd-contacts{
  background:var(--blue);
  padding:58px 0 44px;
}
.pd-contactcard{
  max-width:980px;
  margin:0 auto;
  background:#fff;
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:36px 26px 30px;
  text-align:center;
}
.pd-contactcard h2{
  margin:0 0 8px;
  font-size:28px;
  font-weight:900;
  color:#0f172a;
}
.pd-contactcard .pd-sub3{
  margin:0 auto 12px;
  max-width:820px;
  color:#334155;
  font-weight:500;
  line-height:1.6;
}
.pd-phones{
  margin:10px 0 16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  font-weight:800;
  color:#0f172a;
}
.pd-phones a{color:#0f172a;text-decoration:none}
.pd-phones a:hover{text-decoration:underline}
.pd-form{
  max-width:520px;
  margin:16px auto 0;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.pd-inp{
  height:44px;
  border:none;
  border-bottom:2px solid rgba(15,23,42,.22);
  outline:none;
  font-size:16px;
  padding:0 10px;
}
.pd-inp:focus{border-bottom-color:rgba(11,73,201,.75)}
.pd-submit{
  height:54px;
  border:none;
  border-radius:10px;
  background:var(--blue);
  color:#fff;
  font-weight:900;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 12px 26px rgba(11,73,201,.22);
}
.pd-submit:hover{background:var(--blue2)}

/* ===== Map + footer info (blue) ===== */
.pd-mapwrap{
  background:var(--blue);
  padding:34px 0 60px;
}
.pd-map{
  max-width:980px;
  margin:0 auto;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.pd-map iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}
.pd-footgrid{
  max-width:980px;
  margin:22px auto 0;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  color:#fff;
}
.pd-footgrid h4{
  margin:0 0 12px;
  font-size:18px;
  font-weight:900;
}
.pd-footgrid p{
  margin:0 0 10px;
  opacity:.95;
  font-weight:500;
}
.pd-social{
  max-width:980px;
  margin:18px auto 0;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.pd-social a{
  color:#fff;
  text-decoration:none;
  border:2px solid rgba(255,255,255,.45);
  border-radius:12px;
  padding:10px 14px;
  font-weight:800;
  display:inline-flex;
  gap:10px;
  align-items:center;
}
.pd-social a:hover{border-color:#fff}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .pd-hero__grid{grid-template-columns:1fr; min-height:auto}
  .pd-hero__right{justify-content:center}
  .pd-hero__right::before{right:52%;transform:translateX(20%);top:40px}
  .pd-hero__right::after{right:45%;transform:translateX(20%);top:130px}
  .pd-nav{gap:22px}
  .pd-cards,.pd-sgrid{grid-template-columns:1fr}
}
@media (max-width: 720px){
  .pd-header__row{height:70px}
  .pd-nav{display:none}
  .pd-hero h1{font-size:34px}
  .pd-blue{padding:36px 0 44px}
  .pd-contactcard{padding:28px 18px}
  .pd-map iframe{height:320px}
  .pd-footgrid{grid-template-columns:1fr}
}




/* Honeypot must be invisible (and never affect layout) */
.pd-hp{
  position:fixed !important;
  left:-9999px !important;
  top:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
  z-index:-1 !important;
}
.pd-hp input{
  display:block !important;
  width:1px !important;
  height:1px !important;
  border:0 !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
}



/* Modal */
.pd-modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
}
.pd-modal.is-open{ display:flex; }

.pd-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.pd-modal__box{
  position:relative;
  z-index:1;
  width:min(520px, calc(100% - 24px));
  background:#fff;
  border-radius:14px;
  padding:18px 18px 14px;
  box-shadow:0 18px 60px rgba(0,0,0,.25);
}

.pd-modal__title{
  font-weight:900;
  font-size:18px;
  margin-bottom:8px;
}

.pd-modal__text{
  font-size:15px;
  line-height:1.4;
}

.pd-modal__close{
  position:absolute;
  right:10px;
  top:8px;
  border:0;
  background:transparent;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

/* ===== Logo text (image + text) ===== */
.pd-logo__text{
  font-weight:900;
  font-size:18px;
  letter-spacing:.2px;
  line-height:1;
  color:#fff;
  white-space:nowrap;
}

/* optional: tighten on small screens */
@media (max-width: 520px){
  .pd-logo__text{ font-size:16px; }
  .pd-logo img{ height:34px; }
}

/* optional: if super tight space */
@media (max-width: 360px){
  .pd-logo__text{ display:none; }
}

/* ===== Mobile burger + slide menu ===== */

.pd-burger{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  border-radius:10px;
  padding:10px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.pd-burger span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
}

/* show burger on mobile, hide desktop nav */
@media (max-width: 720px){
  .pd-nav{ display:none !important; }
  .pd-burger{ display:inline-flex !important; }
}

/* overlay wrapper */
.pd-mnav{
  display:none;
  position:fixed;
  inset:0;
  z-index:99999;
}
.pd-mnav.is-open{ display:block; }

.pd-mnav__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

/* right panel */
.pd-mnav__panel{
  position:absolute;
  top:0;
  right:0;
  width:min(86vw, 360px);
  height:100%;
  background:#0b2a6d; /* под твой синий хедер */
  color:#fff;
  padding:18px 16px 16px;
  box-shadow:-18px 0 40px rgba(0,0,0,.25);
  transform:translateX(100%);
  transition:transform .18s ease;
  display:flex;
  flex-direction:column;
}
.pd-mnav.is-open .pd-mnav__panel{ transform:translateX(0); }

.pd-mnav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.15);
}
.pd-mnav__title{
  font-weight:900;
  font-size:16px;
  letter-spacing:.2px;
}
.pd-mnav__close{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.25);
  background:transparent;
  color:#fff;
  cursor:pointer;
  font-size:26px;
  line-height:1;
}

.pd-mnav__links{
  display:flex;
  flex-direction:column;
  padding-top:14px;
  gap:10px;
}
.pd-mnav__links a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  padding:12px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.pd-mnav__links a:active{
  transform:scale(.99);
}

/* prevent body scroll when menu open */
body.pd-lock{ overflow:hidden; }

/* ===== Header phone button ===== */
.pd-headmenu{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:24px;
}

.pd-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 14px;
  border-radius:12px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  white-space:nowrap;
}
.pd-call:hover{
  background:rgba(255,255,255,.18);
}

/* Mobile: phone centered between logo and burger */
@media (max-width: 720px){
  .pd-headmenu{
    flex:1;
    justify-content:center;
    margin-left:0; /* важно: убираем прижим вправо */
  }

  .pd-nav{ display:none !important; } /* меню скрыто, как и было */
  .pd-call{
    height:42px;
    padding:0 16px;
    font-size:14px;
  }
}

.pd-services-note{
  margin:18px auto 0;
  max-width:860px;
  text-align:center;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  line-height:1.5;
  opacity:.95;
}

/* ===== Footer ===== */
.pd-sitefooter{
  background:var(--blue);
  padding:14px 0 18px;
}

.pd-footer-note{
  margin:0 auto;
  max-width:860px;
  text-align:center;
  color:rgba(255,255,255,.85);
  font-weight:600;
  font-size:14px;
  line-height:1.5;
}