/* Corporate minimal style (almaz-like) */
:root{
  --blue:#0055A4;
  --red:#E60012;
  --text:#222;
  --muted:#6b6f76;
  --line:#e6e8ec;
  --bg:#ffffff;
  --bg-soft:#f6f7f9;
  --radius:6px;
  --shadow:0 6px 18px rgba(0,0,0,.06);
  --font:'Roboto', Arial, sans-serif;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
}

/* Topbar */
.topbar{
  background:var(--blue);
  color:#fff;
  font-size:14px;
}
.topbar__inner{
  max-width:1100px;
  margin:0 auto;
  padding:8px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}
.topbar a{color:#fff;text-decoration:none;}
.topbar a:hover{text-decoration:underline;}
.sep{opacity:.6;margin:0 6px;}

/* Navbar */
.navbar{
  background:#fff;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:10;
}
.navbar__inner{
  max-width:1100px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Logo */
.logo{ text-decoration:none; display:flex; flex-direction:column; gap:2px; }
.logo__text{
  font-weight:700;
  font-size:22px;
  color:var(--blue);
  letter-spacing:.3px;
}
.logo__accent{ color:var(--red); }
.logo__sub{
  font-size:11px;
  color:var(--muted);
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Menu */
.menu{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  gap:18px;
  align-items:center;
}
.menu a{
  text-decoration:none;
  color:var(--text);
  font-weight:500;
  font-size:15px;
  padding:6px 0;
  border-bottom:2px solid transparent;
}
.menu a:hover{color:var(--blue);border-bottom-color:var(--blue);}
.menu a[aria-current="page"]{
  color:var(--blue);
  border-bottom-color:var(--blue);
}

/* Burger for mobile */
.burger{
  display:none;
  width:42px;height:36px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:4px;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  background:var(--text);
  margin:6px 8px;
}

/* Hero */
.hero{
  min-height:calc(100vh - 140px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 16px 60px;
  background:linear-gradient(180deg, #fff 0%, #fff 55%, var(--bg-soft) 100%);
}
.hero__inner{
  width:100%;
  max-width:900px;
  text-align:center;
  padding:32px 24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:var(--shadow);
}
.badge{
  display:inline-block;
  background:var(--bg-soft);
  color:var(--blue);
  font-weight:700;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:12px;
}
h1{
  margin:8px 0 10px;
  font-size:34px;
  color:var(--red);
  font-weight:700;
}
.lead{
  margin:0 auto 18px;
  font-size:17px;
  color:var(--muted);
  line-height:1.6;
  max-width:740px;
}
.lead--small{font-size:15px; margin-top:6px;}

/* Image */
.media{margin:16px 0 18px;}
.toolimg{
  max-width:100%;
  border-radius:8px;
  box-shadow:0 6px 16px rgba(0,0,0,.12);
}

/* Timer */
.timer{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin:8px 0 18px;
}
.timer__item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  width:110px;
  padding:12px 10px;
}
.timer__item span{
  display:block;
  font-size:30px;
  font-weight:700;
  color:var(--blue);
}
.timer__item small{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

/* Messengers */
.messengers{
  display:flex;
  justify-content:center;
  gap:8px;
  margin:6px 0 12px;
  flex-wrap:wrap;
}
.messenger{
  display:inline-flex;
  align-items:center;
  gap:6px;
  height:40px;
  padding:0 12px;
  border-radius:4px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  border:1px solid var(--line);
  background:#fff;
}
.messenger .icon{width:18px;height:18px;}
.messenger--telegram{color:#0088cc;}
.messenger--telegram:hover{border-color:#0088cc;background:#f2f9fd;}
.messenger--viber{color:#7b519d;}
.messenger--viber:hover{border-color:#7b519d;background:#faf7fd;}
.messenger--whatsapp{color:#128C7E;}
.messenger--whatsapp:hover{border-color:#128C7E;background:#f1fbf9;}

/* Note */
.note{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}
.note a{color:var(--blue);}

/* Footer */
.footer{
  background:#fff;
  border-top:1px solid var(--line);
}
.footer__inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  font-size:14px;
  color:var(--muted);
}
.footer__links a{color:var(--muted);text-decoration:none;}
.footer__links a:hover{color:var(--blue);}

/* Responsive */
@media (max-width: 820px){
  h1{font-size:30px;}
  .timer__item{width:96px;}
}
@media (max-width: 640px){
  .topbar__inner{flex-direction:column;align-items:flex-start;}
  .burger{display:block;}
  .menu{
    position:absolute;
    right:16px; top:62px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:6px;
    padding:8px 0;
    flex-direction:column;
    gap:0;
    width:210px;
    display:none;
    box-shadow:var(--shadow);
  }
  .menu.open{display:flex;}
  .menu li{width:100%;}
  .menu a{display:block;padding:10px 14px;}
  .footer__inner{flex-direction:column;align-items:flex-start;}
}
