:root{
  --navy:#0b1c2d;
  --blue:#1e3a5f;
  --bg:#f9f9f9;
  --card:#ffffff;
  --text:#222;
  --muted:#666;
  --border:#e6e6e6;
  --btn:#0b1c2d;
}

*{ box-sizing:border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: 90%;
  max-width: 980px;
  margin: auto;
}

header {
  background: var(--navy);
  color: white;
  padding: 14px 0;
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

header h1 {
  margin: 0;
  font-size: 18px;
  letter-spacing: .3px;
}

nav a {
  color: white;
  margin-right: 14px;
  text-decoration: none;
  opacity: .9;
}

nav a.active{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero {
  background: var(--blue);
  color: white;
  padding: 56px 0;
}

.hero h2{
  margin: 0 0 12px 0;
  font-size: 34px;
  line-height: 1.1;
}

.hero p{
  max-width: 720px;
  opacity: .95;
  line-height: 1.5;
}

.hero-actions{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.section {
  padding: 34px 0;
}

h2, h3 {
  color: var(--navy);
}

ul{
  margin: 10px 0 0 18px;
  line-height: 1.6;
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}

.grid-2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-top: 16px;
}

.form label{
  display:block;
  margin: 12px 0;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}

.form input, .form textarea{
  width:100%;
  margin-top: 6px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.form input:focus, .form textarea:focus{
  border-color: rgba(11,28,45,.45);
  box-shadow: 0 0 0 4px rgba(11,28,45,.08);
}

.btn{
  display:inline-block;
  background: var(--btn);
  color:#fff;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration:none;
}

.btn:hover{ opacity: .95; }

.btn-secondary{
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
}

.hint{
  margin: 10px 0 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.success{
  color: #0a7a2f;
  font-weight: 700;
}

footer {
  background: #eee;
  padding: 18px 0;
  margin-top: 34px;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.store-links{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

.store-btn{
  display:inline-block;
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px;
  text-decoration:none;
  color: var(--navy);
  font-weight: 700;
}

.store-btn:hover{
  background:#fafafa;
}

@media (max-width: 860px){
  .grid-2{ grid-template-columns: 1fr; }
  .header-row{ flex-direction:column; align-items:flex-start; }
}
/*
User Policy______________________________________________________________________
*/

:root{
  --text:#f5f5f6;
  --muted:rgba(245,245,246,.72);
  --gold1:#f0d38a;
  --gold2:#c6a15b;
  --border:rgba(255,255,255,.14);
  --radius:22px;
  --shadow:0 30px 80px rgba(0,0,0,.55);
  --max:880px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(240,211,138,.34), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(198,161,91,.28), transparent 55%),
    #0b0c0f;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:32px 20px 90px;
}

.back{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(198,161,91,.45);
  color:var(--text);
  text-decoration:none;
  backdrop-filter:blur(8px);
  transition:.25s;
}
.back:hover{
  background:rgba(198,161,91,.18);
}

h1{
  margin:26px 0 6px;
  font-size:40px;
  background:linear-gradient(90deg,var(--gold1),var(--gold2));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.updated{
  font-size:13px;
  color:var(--muted);
  margin-bottom:26px;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.05));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}

h2{
  margin-top:26px;
  font-size:18px;
  background:linear-gradient(90deg,var(--gold1),var(--gold2));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

p{
  margin-top:10px;
  font-size:14px;
  line-height:1.75;
  color:rgba(245,245,246,.86);
}

footer{
  margin-top:48px;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--muted);
}

footer a{
  color:inherit;
  text-decoration:none;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
}
/*
_______________________________________________________________________
*/

/*
Privacy 
*/
:root{
  --text:#f5f5f6;
  --muted:rgba(245,245,246,.72);
  --gold1:#f0d38a;
  --gold2:#c6a15b;
  --border:rgba(255,255,255,.14);
  --radius:22px;
  --shadow:0 30px 80px rgba(0,0,0,.55);
  --max:880px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(240,211,138,.38), transparent 60%),
    radial-gradient(900px 500px at 88% 0%, rgba(198,161,91,.32), transparent 55%),
    #0b0c0f;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:32px 20px 90px;
}

.back{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(198,161,91,.45);
  color:var(--text);
  text-decoration:none;
  backdrop-filter:blur(8px);
  transition:.25s;
}
.back:hover{
  background:rgba(198,161,91,.18);
}

h1{
  margin:26px 0 6px;
  font-size:40px;
  background:linear-gradient(90deg,var(--gold1),var(--gold2));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.updated{
  font-size:13px;
  color:var(--muted);
  margin-bottom:26px;
}

.card{
  background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.05));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}

h2{
  margin-top:26px;
  font-size:18px;
  background:linear-gradient(90deg,var(--gold1),var(--gold2));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

p{
  margin-top:10px;
  font-size:14px;
  line-height:1.75;
  color:rgba(245,245,246,.86);
}

ul{
  margin-top:10px;
  padding-left:18px;
}
li{
  margin-top:6px;
  font-size:14px;
  color:rgba(245,245,246,.86);
}

footer{
  margin-top:48px;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  font-size:13px;
  color:var(--muted);
}

footer a{
  color:inherit;
  text-decoration:none;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
}
/*
_______________________________________________________________________
*/

/*
Partners_______________________________________
*/
    :root{
      --bg:#0b0c0f;     /* ONE flat background */
      --text:#f5f5f6;
      --muted:rgba(245,245,246,.72);

      --surface:rgba(255,255,255,.06);
      --border:rgba(255,255,255,.12);
      --divider:rgba(255,255,255,.09);

      --gold:#c6a15b;

      --shadow:0 20px 60px rgba(0,0,0,.45);
      --shadow2:0 16px 46px rgba(0,0,0,.34);

      --radius-xl:22px;
      --max:1240px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      background: var(--bg);
      color:var(--text);
      overflow-x:hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      position: relative;
    }

    /* ✅ TOP GOLD GLOW ONLY (cannot affect bottom) */
    body::before{
      content:"";
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      height: 420px;                 /* glow zone height */
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(900px 520px at 18% 8%, rgba(198,161,91,.12), transparent 60%),
        radial-gradient(900px 520px at 90% 0%, rgba(255,255,255,.06), transparent 58%);
      opacity: 1;
      -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
              mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
    }

    a{color:inherit;text-decoration:none}

    .wrap{
      max-width:var(--max);
      margin:0 auto;
      padding:26px 22px 90px;
      position: relative;
      z-index: 1; /* content above glow */
    }

    /* HEADER */
    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding: 6px 0 18px;
    }
    .logo{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
      letter-spacing:.2px;
    }
    .logo-img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;

  /* золотое свечение */
  filter:
    drop-shadow(0 0 6px rgba(198,161,91,.55))
    drop-shadow(0 8px 22px rgba(198,161,91,.35));

  transition: transform .2s ease, filter .2s ease;
}

.logo-img:hover{
  transform: translateY(-1px);
  filter:
    drop-shadow(0 0 8px rgba(198,161,91,.7))
    drop-shadow(0 10px 28px rgba(198,161,91,.45));
}

    .mark{
      width:28px;height:28px;border-radius:10px;
      background:linear-gradient(135deg, rgba(198,161,91,.95), rgba(198,161,91,.18));
      box-shadow: 0 14px 34px rgba(198,161,91,.16);
      flex:0 0 auto;
    }
    .nav{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }
    .nav a{
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      color:var(--muted);
      font-weight:900;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    }
    .nav a:hover{
      transform: translateY(-1px);
      background: rgba(255,255,255,.09);
      border-color: rgba(255,255,255,.18);
      color: rgba(245,245,246,.92);
    }
    .nav a.active{
      border-color: rgba(198,161,91,.55);
      background: rgba(198,161,91,.10);
      color: rgba(255,255,255,.92);
    }

    .divider{
      height:1px;
      background: var(--divider);
      margin: 26px 0;
    }

    /* HERO */
    .hero{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items:start;
      padding: 8px 0 0;
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(198,161,91,.35);
      background:rgba(198,161,91,.08);
      font-weight:900;
      font-size:13px;
      width:fit-content;
    }
    .kdot{
      width:8px;height:8px;border-radius:999px;
      background:var(--gold);
      box-shadow:0 0 0 6px rgba(198,161,91,.15);
    }

    h1{
      margin:14px 0 10px;
      font-size: clamp(34px, 4.4vw, 52px);
      line-height:1.02;
      letter-spacing:-.9px;
    }
    .lead{
      margin:0;
      color:rgba(245,245,246,.86);
      font-size:16px;
      line-height:1.6;
      max-width: 70ch;
    }
    .fine{
      margin-top:12px;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }

    /* Cards */
    .luxCard{
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: var(--shadow2);
      position: relative;
      overflow:hidden;
    }
    .luxCard::after{
      content:"";
      position:absolute;
      inset:-140px -160px auto auto;
      width: 360px; height: 360px;
      background: radial-gradient(circle at 35% 35%, rgba(198,161,91,.14), transparent 60%);
      transform: rotate(12deg);
      pointer-events:none;
      opacity: .65;
    }
    .luxCard h2{margin:0 0 8px;font-size:20px;letter-spacing:-.25px;position:relative;z-index:1}
    .luxCard p{margin:0;color:rgba(245,245,246,.84);line-height:1.7;font-size:14px;position:relative;z-index:1}

    .benefits{
      margin-top: 14px;
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .benefit{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      border-radius: 16px;
      padding: 14px;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .benefit:hover{
      transform: translateY(-2px);
      background: rgba(255,255,255,.09);
      border-color: rgba(255,255,255,.18);
      box-shadow: var(--shadow2);
    }
    .benefit b{display:block;font-weight:950;margin-bottom:6px;letter-spacing:-.15px}
    .benefit span{display:block;color:var(--muted);font-size:13px;line-height:1.45}

    /* FORM */
    .formCard{
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.06);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .formCard h2{margin:0 0 10px;font-size:20px;letter-spacing:-.2px}

    .formGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 12px;
    }
    .field{display:flex;flex-direction:column;gap:8px}
    label{font-weight:900;font-size:12px;color:rgba(245,245,246,.88)}
    input, textarea{
      width:100%;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.25);
      color: var(--text);
      padding: 12px 12px;
      outline:none;
      font-size:14px;
      transition: border-color .18s ease, background .18s ease;
    }
    input:focus, textarea:focus{
      border-color: rgba(198,161,91,.55);
      background: rgba(0,0,0,.32);
    }
    textarea{min-height:120px;resize:vertical}
    .full{grid-column: 1 / -1}

    .btnRow{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top: 12px;
    }
    .btn{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 14px 16px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      color: var(--text);
      font-weight: 950;
      cursor:pointer;
      user-select:none;
      transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
      flex: 1 1 220px;
      min-height: 48px;
    }
    .btn:hover{
      transform:translateY(-1px);
      background:rgba(255,255,255,.09);
      border-color:rgba(255,255,255,.18);
      box-shadow:var(--shadow2)
    }
    .btn.primary{
      background: linear-gradient(135deg, rgba(198,161,91,.95), rgba(198,161,91,.35));
      border-color: rgba(198,161,91,.55);
      color:#121212;
      box-shadow: 0 18px 44px rgba(198,161,91,.18);
    }

    .note{margin-top:10px;color:var(--muted);font-size:13px;line-height:1.55}

    /* FOOTER — clean, no glow */
    footer{
      margin-top: 40px;
      padding: 22px 0 28px;
      border-top: 1px solid rgba(255,255,255,.08);
      background: transparent;
    }
    .footerRow{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
      color: var(--muted);
      font-size: 13px;
    }
    .footLinks{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      align-items:center;
    }
    .pill{
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      transition: background .2s ease, transform .2s ease, border-color .2s ease;
      display:inline-flex;
      align-items:center;
      gap:8px;
      color: rgba(245,245,246,.86);
    }
    .pill:hover{
      background: rgba(255,255,255,.08);
      transform: translateY(-1px);
      border-color: rgba(255,255,255,.16);
      color: rgba(245,245,246,.95);
    }
    .iconBtn svg{width:18px;height:18px;opacity:.9}

    @media (max-width: 980px){
      .hero{grid-template-columns:1fr}
      .benefits{grid-template-columns:1fr}
      .formGrid{grid-template-columns:1fr}
    }
    @media (max-width: 520px){
      .wrap{padding:20px 14px 70px}
    }
/*
___________________________________________________
*/
  /*
Main page __________________________________
*/

/* =========================
_______________________________________________________________________
   ========================= */