:root{
  --bg:#ffffff;
  --text:#0f0f10;
  --muted:#555;
  --card:#f6f7f9;
  --border:#e6e6e6;
  --radius:18px;
  --max:980px;
  --hover:#3A8DFF;
  --dark:#111;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{ color:inherit; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:18px;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:10;
  background:transparent;
  border-bottom:none;
  padding:10px 0;
}

.nav{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px;
  max-width:var(--max);
  margin:0 auto;

  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand img{
  height:34px;
  width:auto;
  display:block;
}

.menu{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  width:100%;
}

.menuMain{
  display:flex;
  gap:40px;
  justify-content:center;
  flex:1;
}

.menuLang{
  display:flex;
  gap:14px;
  justify-content:flex-end;
}

.menu a{
  text-decoration:none;
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition: color .25s ease;
}

.menu a:hover{ color:var(--hover); }

.menuLang a{ font-weight:700; }

.menuLang a:not(:last-child)::after{
  content:" / ";
  color:#999;
  margin:0 6px;
}

/* Mobile: keep header clean */
@media (max-width: 520px){
  .brand{ display:none; }
  .menu{ width:100%; justify-content:center; }
}

/* Hero */
.hero{
  text-align:center;
  padding:18px 0 6px;
}

.heroTitle{
  font-size: clamp(28px, 4.5vw, 44px);
  line-height:1.1;
  margin: 10px 0 40px;
  font-weight:900;
  color:#3A6EA5;
}

.heroTag{
  margin:0 0 10px;
  font-size: 18px;
  color: var(--text);
  font-weight:750;
}

.heroSub{
  margin:0 0 8px;
  color: var(--muted);
  font-size: 15.5px;
}

.heroSince{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

/* Buttons */
.ctaRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:40px 0 40px;
  justify-content:flex-start;
}

@media (min-width: 860px){
  .ctaRow{ justify-content:center; }
}

.btn{
  display:inline-block;
  text-decoration:none;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:850;
  transition: all .25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.btn:hover{
  background:#f0f1f3;
  color:#111;
  border-color:#ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}

.btn:active{ transform: translateY(1px); }

.btnPrimary{
  background:var(--dark);
  color:#fff;
  border-color:var(--dark);
}

.btnPrimary:hover{
  background:#000;
  border-color:#000;
}

.btnWide{
  min-width: 160px;
  text-align:center;
}

/* Layout cards */
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}

@media (max-width: 860px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}

.card h2{ margin:0 0 8px; font-size:18px; }
.card h3{ margin:14px 0 8px; font-size:16px; }

.card p{
  margin:0 0 10px;
  color:var(--muted);
}

.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}

.small{
  font-size: 13px;
  color:var(--muted);
}

hr{
  border:0;
  border-top:1px solid var(--border);
  margin:14px 0;
}

/* Badges */
.badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:8px;
}

.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}

/* Footer */
.footer{
  margin-top:18px;
  padding:18px 0 26px;
  color:var(--muted);
  border-top:1px solid var(--border);
}

/* (Optional helper class you used) */
.highlight{
  color:#3A6EA5;
  font-weight:800;
}

/* Google rating (improved) */
.googleRatingBox{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  text-align:center;
  margin-bottom:24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.googleRatingBox:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
  border-color:#d8d8d8;
}

.grStars{
  font-size:16px;
  letter-spacing:1px;
  margin: 2px 0 6px;
  color:#f4b400;
}

.grScore{
  font-size:26px;
  font-weight:900;
  margin: 2px 0 6px;
  color: var(--text);
}

.grScore span{
  color:#3A6EA5;
}

.grCount{
  color:#666;
  font-size:13.5px;
  margin-bottom:12px;
}

.grBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:#3A6EA5;
  color:#fff;
  text-decoration:none;
  font-weight:750;
  font-size:14px;
  border:1px solid #1a73e8;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  box-shadow: 0 2px 6px rgba(26,115,232,0.22);
}

.grBtn:hover{
  background:#1666d2;
  border-color:#1666d2;
  box-shadow: 0 6px 14px rgba(26,115,232,0.28);
  transform: translateY(-1px);
}

.grBtn:active{
  transform: translateY(0px);
  box-shadow: 0 2px 8px rgba(26,115,232,0.20);
}

/* Footer badges (Recognized by) */
.footerBadges{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:10px;
  flex-wrap:wrap;
}

.footerBadgeLink{
  display:inline-flex;
  align-items:center;
  padding:3px;
  border-radius:10px;
  text-decoration:none;
  color: var(--muted);
  transition: box-shadow .18s ease, color .25s ease;
}

.footerBadge{
  width:50px;   /* можешь увеличить до 55–60, если хочется */
  height:auto;
  display:block;
  opacity:0.82; /* “легче” по умолчанию */
  transition: transform .18s ease, opacity .25s ease;
}

.footerBadgeLink:hover{
  box-shadow: 0 6px 14px rgba(58,141,255,0.12);
  color: var(--hover);
}

.footerBadgeLink:hover .footerBadge{
  transform: translateY(-1px);
  opacity:1;
}
.footerRow{
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap:10px;
}

.footerLeft{
  white-space: nowrap;
  padding-right: 8px;
}

.footerRecognized{
  display:flex;
  align-items:center;
  gap:8px;
}

.footerRecognizedLabel{
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.footerRecognizedBadge{
  height: 30px;
  width:auto;
  opacity:0.85;
  transition: transform .18s ease, opacity .25s ease;
}

.footerRecognizedLink:hover .footerRecognizedBadge{
  transform: translateY(-1px);
  opacity:1;
}

