: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 a{
  text-decoration:none;
  color:var(--muted);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition: color .25s ease;
}
.menu{
  display:flex;
  align-items:center;
  justify-content:space-between;   /* главное */
  gap:14px;
  width:100%;
}

.menuMain{
  display:flex;
  gap:40px;                        /* больше расстояние */
  justify-content:center;
  flex:1;                          /* центрируем Home/Fees */
}

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

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

/* Mobile: keep header clean */
@media (max-width: 520px){
  .brand{ display:none; } /* hide logo on very small screens */
  .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; /* mobile default */
}
@media (min-width: 860px){
  .ctaRow{ justify-content:center; } /* centered on desktop */
}
.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);
}
.highlight{
  color:#3A6EA5;
  font-weight:800;
}
.menuMain a{
  text-transform:uppercase;
  letter-spacing:.5px;
  font-weight:800;
}
.menuLang a{
  font-weight:700;
}
.menuLang a:not(:last-child)::after{
  content:" / ";
  color:#999;
  margin:0 6px;
}
.googleRatingBox{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  text-align:center;
  margin-bottom: 24px;

}

.grStars{
  color:#FFC107;
  font-size:22px;
  letter-spacing:2px;
  margin-bottom:4px;
}

.grScore{
  font-size:22px;
  font-weight:800;
  margin-bottom:4px;
}

.grCount{
  color:#666;
  font-size:14px;
  margin-bottom:10px;
}

.grBtn{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#f0f1f3;
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}

.grBtn:hover{
  background:#e2e3e6;
}
/* Google rating (improved) */
.googleRatingBox{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  text-align:center;
  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;
}

/* Smaller, cleaner stars */
.grStars{
  font-size:16px;         /* smaller */
  letter-spacing:1px;
  margin: 2px 0 6px;
  color:#f4b400;          /* Google-ish yellow */
}

/* Make rating stand out */
.grScore{
  font-size:26px;
  font-weight:900;
  margin: 2px 0 6px;
  color: var(--text);
}

.grScore span{
  color:#3A6EA5;          /* Google blue */
}

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

/* Google-like action button */
.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);
}

