/* =========================
   THEME SWITCHER
   Choose ONE theme block below (A/B/C)
   ========================= */

/* THEME A — "Clean Corporate" (default) */

:root{
  --bg: #f7f8fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --accent: #2563eb;
  --accent-2: #0ea5e9;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(17,24,39,.08);
  --maxw: 980px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* THEME B — "Mediterranean Calm" */
/*
:root{
  --bg: #f6fbfb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --border: #dbeafe;
  --accent: #0f766e;
  --accent-2: #22c55e;

  --radius: 18px;
  --shadow: 0 12px 34px rgba(15,118,110,.10);
  --maxw: 980px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
*/

/* THEME C — "Dark + Serious" */
/*
:root{
  --bg: #0b1220;
  --surface: #0f1a2c;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(229,231,235,.10);
  --accent: #60a5fa;
  --accent-2: #34d399;

  --radius: 16px;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --maxw: 980px;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
*/

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
    background:
    radial-gradient(1200px 800px at 10% -10%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 55%),
    radial-gradient(900px 600px at 110% 10%, color-mix(in oklab, var(--accent-2) 16%, transparent), transparent 55%),
    var(--bg);

}
a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 18px 56px;
}

.topbar{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.brand{
  display:flex; align-items:center; gap: 10px;
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--text);
}
.logo{
  width: 200px; height: 50px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
}
.brand small{ display:block; font-weight:600; color: var(--muted); letter-spacing: 0; }

.navlinks{ display:flex; gap: 14px; flex-wrap: wrap; }
.navlinks a{
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 12px;
}
.navlinks a.active{
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 78%, transparent);
  border: 1px solid var(--border);
}
.navlinks a:hover{
  color: var(--text);
  background: color-mix(in oklab, var(--surface) 78%, transparent);
  border: 1px solid var(--border);
  text-decoration: none;
}

.hero{
  margin-top: 20px;
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 880px){
  .hero{ grid-template-columns: 1fr; }
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

h1{ margin: 0 0 8px; font-size: 34px; line-height: 1.15; }
h2{ margin: 0 0 10px; font-size: 22px; }
h3{ margin: 18px 0 10px; font-size: 16px; }
p{ margin: 10px 0; }
.muted{ color: var(--muted); }
hr.sep{
  border: 0;
  border-top: 1px solid var(--border);
  margin: 18px 0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in oklab, var(--accent) 25%, var(--border));
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 14%, var(--surface)),
                                      color-mix(in oklab, var(--accent-2) 10%, var(--surface)));
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}
.btn:hover{ text-decoration:none; filter: brightness(1.02); }
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: 1px solid color-mix(in oklab, var(--accent) 60%, var(--border));
}
.btn.ghost{
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 80%, transparent);
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 880px){
  .grid2{ grid-template-columns: 1fr; }
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
}
.list li{ margin: 6px 0; }

.footer{
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
.footer small{ color: var(--muted); font-size: 12px; line-height: 1.5; }
.footer a{ color: var(--muted); font-weight: 600; }
.footer a:hover{ color: var(--text); text-decoration: none; }

.logo-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 880px){
  .logo-grid{ grid-template-columns: 1fr; }
}

.logo-tile{
  display:block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  color: var(--text);
  font-weight: 700;
}
.logo-tile:hover{
  text-decoration:none;
  border-color: color-mix(in oklab, var(--accent) 35%, var(--border));
  transform: translateY(-1px);
}

.tile-head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.dealer-badge{
  height: 60px;
  width: auto;
  display:block;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 2px 6px;
}

.logo-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 880px){ .logo-grid{ grid-template-columns: 1fr; } }

.logo{ position:relative; overflow:hidden; }
.logo::after{
  content:"";
  position:absolute; inset:-40%;
  background: radial-gradient(circle, rgba(255,255,255,.35), transparent 55%);
  transform: translateX(-40%) rotate(10deg);
  animation: sheen 10s ease-in-out infinite;
}
@keyframes sheen{
  0%, 60% { transform: translateX(-60%) rotate(10deg); opacity:.0; }
  70% { opacity:.55; }
  100% { transform: translateX(60%) rotate(10deg); opacity:0; }
}

.cookie{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: var(--maxw);
  margin: 0 auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 50;
}
.cookie b{ margin-right: 8px; }

.partner-title{
  font-weight: 800;
  font-size: 14px;
  margin-top: 10px;
  color: var(--text);
}

.partner-work{
  margin-top: 6px;
  font-size: 14px;
  color: var(--text);   /* обычный текст, как ты просил */
  opacity: .92;         /* чуть спокойнее, но не muted */
  font-weight: 500;
}

.last-updated{
  margin-top: 6px;
  font-size: 12px;
}

.cookie{
  z-index: 9999;
  pointer-events: auto;
}

.cookie *{
  pointer-events: auto;
}

.cookie[hidden] { 
  display: none !important; 
}