 :root{
      --bg:#ffffff;
      --text:#0b1220;
      --muted:#5b6475;
      --line:rgba(15,23,42,.10);
      --brand:#0b1220;
      --accent:#16a34a;
      --accent2:#0ea5e9;
      --max: 1120px;
      --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      --shadow: 0 18px 50px rgba(2,6,23,.08);
      --radius: 18px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
    }
    a{color:inherit; text-decoration:none}
    .container{max-width:var(--max); margin:0 auto; padding:0 18px}

    /* Topbar (без “прямоугольных” блоков) */
    .topbar{
      position:sticky; top:0; z-index:50;
      background:rgba(255,255,255,.75);
      backdrop-filter:saturate(180%) blur(14px);
      border-bottom:1px solid var(--line);
    }
    .topbar-inner{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px;
      font-weight:800; letter-spacing:-.02em;
    }
    .logo{
      width:34px; height:34px; border-radius:12px;
      background: radial-gradient(120% 120% at 0% 0%, #0ea5e9 0%, #22c55e 45%, #0b1220 100%);
      box-shadow:0 18px 40px rgba(14,165,233,.14);
    }
    .nav{
      display:flex; gap:18px; align-items:center;
      color:var(--muted);
      font-size:16px;
    }
    .nav a{padding:8px 10px; border-radius:999px}
    .nav a:hover{background:rgba(15,23,42,.04)}
    .cta{display:flex; gap:10px; align-items:center}

    .btn{
      border:none;
      background:transparent;
      padding:10px 14px;
      border-radius:999px;
      font-weight:700;
      font-size:16px;
      display:inline-flex; gap:10px; align-items:center; justify-content:center;
      cursor:pointer;
      transition:transform .12s ease, background .12s ease, box-shadow .12s ease;
    }
    .btn:hover{transform:translateY(-1px); background:rgba(15,23,42,.04)}
    .btn-primary{
      background:linear-gradient(135deg, #0b1220 0%, #0f172a 100%);
      color:#fff;
      box-shadow:0 16px 40px rgba(2,6,23,.18);
    }
    .btn-primary:hover{
      background:linear-gradient(135deg, #0b1220 0%, #111827 100%);
      box-shadow:0 20px 55px rgba(2,6,23,.22);
    }

    /* HERO (без карточек/прямоугольников) */
    .hero{padding:34px 0 18px}
    .hero-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:26px;
      align-items:start;
    }

    .pill{
      display:inline-flex; align-items:center; gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(15,23,42,.04);
      color:var(--muted);
      font-size:16px;
      border:1px solid rgba(15,23,42,.06);
    }
    .dot{
      width:8px; height:8px; border-radius:999px;
      background:linear-gradient(180deg, #22c55e, #0ea5e9);
      box-shadow:0 0 0 4px rgba(34,197,94,.10);
    }

    h1{
      margin:14px 0 10px;
      font-size: clamp(30px, 3.2vw, 46px);
      line-height:1.06;
      letter-spacing:-.035em;
    }
    .lead{
      margin:0 0 16px;
      color:var(--muted);
      font-size:16px;
      line-height:1.65;
      max-width:62ch;
    }
    .hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

    /* Мягкие “метрики” без рамок */
    .meta-row{
      display:flex; flex-wrap:wrap; gap:18px;
      margin-top:18px;
      color:var(--muted);
      font-size:15px;
    }
    .meta-row b{color:var(--text)}
    .sep{opacity:.35}

    /* Мини-панель покупки — без прямоугольников, только мягкие разделители */
    .buy{
      padding-top:6px;
    }
    .product-line{
      display:flex; align-items:center; gap:14px;
      padding:10px 0 14px;
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .product-img{
      width:78px; height:78px; border-radius:22px;
      background:
        radial-gradient(80% 80% at 30% 25%, rgba(14,165,233,.30), transparent 60%),
        radial-gradient(90% 90% at 70% 70%, rgba(34,197,94,.22), transparent 62%),
        linear-gradient(180deg, #ffffff, #f3f6fb);
      box-shadow:0 18px 50px rgba(2,6,23,.10);
    }
    .product-line h3{margin:0; font-size:16px; letter-spacing:-.02em}
    .product-line p{margin:4px 0 0; color:var(--muted); font-size:16px; line-height:1.5}

    .price-row{
      display:flex; align-items:flex-end; justify-content:space-between; gap:10px;
      padding:14px 0 10px;
    }
    .badge{
      display:inline-flex; align-items:center; gap:8px;
      font-size:14px; font-weight:800;
      color:#166534;
      background:rgba(34,197,94,.10);
      border:1px solid rgba(34,197,94,.18);
      padding:7px 10px;
      border-radius:999px;
    }
    .badge i{
      width:8px; height:8px; border-radius:99px;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(34,197,94,.14);
      display:inline-block;
    }
    .price{
      font-weight:900;
      font-size:30px;
      letter-spacing:-.03em;
    }
    .old{
      margin-left:10px;
      color:#94a3b8;
      text-decoration:line-through;
      font-weight:700;
      font-size:14px;
    }
    .hint{
      color:#64748b;
      font-size:12px;
      line-height:1.5;
    }

    /* Sections (без “карточек”) */
    section{padding:22px 0}
    .section-head{
      display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
      padding:8px 0 10px;
      border-bottom:1px solid rgba(15,23,42,.08);
      margin-bottom:14px;
    }
    .section-head h2{
      margin:0;
      font-size:22px;
      letter-spacing:-.02em;
    }
    .section-head p{margin:0; color:var(--muted); font-size:13px; max-width:62ch}

    /* Checklist (как на скрине, но без “блоков-карточек”: только строки + разделители) */
    .checklist{margin:0; padding:0; list-style:none}
    .checklist li{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px 0;
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .checklist li:last-child{border-bottom:none}
    .check{
      width:22px; height:22px; border-radius:999px;
      background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.22);
      display:grid; place-items:center;
      flex:0 0 22px;
      margin-top:2px;
    }
    .check svg{width:14px; height:14px; color:#16a34a}

    /* Steps */
    .steps{display:grid; gap:12px}
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:12px 0;
      border-bottom:1px solid rgba(15,23,42,.08);
    }
    .step:last-child{border-bottom:none}
    .num{
      width:34px; height:34px; border-radius:14px;
      background:linear-gradient(180deg, rgba(14,165,233,.14), rgba(34,197,94,.10));
      display:grid; place-items:center;
      font-weight:900;
      color:#0f172a;
      flex:0 0 34px;
    }
    .step b{display:block; margin:0 0 4px; letter-spacing:-.01em}
    .step p{margin:0; color:var(--muted); font-size:13px; line-height:1.6}

    /* Reviews (без рамок) */
    .reviews{display:grid; grid-template-columns:repeat(3, 1fr); gap:18px}
    .review{
      padding:0;
      border-top:1px solid rgba(15,23,42,.08);
      padding-top:14px;
    }
    .review:first-child{border-top:none; padding-top:0}
    .stars{letter-spacing:1px; font-size:12px; color:#0f172a}
    .review p{margin:8px 0 10px; color:var(--muted); font-size:13px; line-height:1.65}
    .who{display:flex; align-items:center; justify-content:space-between; gap:10px; font-size:12px; color:#64748b}
    .who b{color:#0f172a}

    /* FAQ (минимально) */
    details{padding:12px 0; border-bottom:1px solid rgba(15,23,42,.08)}
    details:last-child{border-bottom:none}
    summary{cursor:pointer; font-weight:800; letter-spacing:-.01em}
    details p{margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.65}

    /* Order form — без прямоугольников */
    .order{
      padding-top:2px;
    }
    form{display:grid; gap:12px}
    .row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
    label{font-size:12px; color:var(--muted)}
    input, select, textarea{
      width:100%;
      padding:12px 0;
      border:none;
      border-bottom:1px solid rgba(15,23,42,.18);
      background:transparent;
      font-family:inherit;
      font-size:14px;
      outline:none;
    }
    input:focus, select:focus, textarea:focus{
      border-bottom-color:rgba(14,165,233,.70);
    }
    textarea{padding-top:10px; resize:vertical}

    .footer{
      padding:18px 0 28px;
      color:#94a3b8;
      font-size:12px;
      line-height:1.6;
      border-top:1px solid rgba(15,23,42,.08);
      margin-top:18px;
    }

    .toast{
      position:fixed; right:16px; bottom:16px;
      max-width:360px;
      background:#fff;
      box-shadow:var(--shadow);
      border-radius:16px;
      padding:12px 14px;
      display:none;
      z-index:80;
      border:1px solid rgba(15,23,42,.10);
    }
    .toast b{display:block; font-size:14px}
    .toast span{display:block; color:var(--muted); font-size:13px; margin-top:4px}

    @media (max-width: 920px){
      .hero-grid{grid-template-columns:1fr}
      .reviews{grid-template-columns:1fr}
      .nav{display:none}
      .row{grid-template-columns:1fr}
    }

  .hero-grid{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:26px;
    align-items:center; /* чтобы картинка по центру по высоте */
  }

  .hero-media{
    position:relative;
    width:100%;
    aspect-ratio: 4 / 5;           /* форма как на ShinePro */
    border-radius: 28px;
    overflow:hidden;
    background:
      radial-gradient(900px 500px at 20% 10%, rgba(14,165,233,.18), transparent 55%),
      radial-gradient(900px 500px at 80% 20%, rgba(34,197,94,.14), transparent 52%),
      linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.35));
    box-shadow: 0 26px 70px rgba(2,6,23,.10);
    transform: translateZ(0);
  }
.order-form {
  background: #ffffffba;
  border-radius: 16px;
  padding: 20px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border: 1px solid #f0f0f0;
}
input, select {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #ddd;
  font-size: 16px;
}

input:focus, select:focus {
  border-color: #FF7A00;
  box-shadow: 0 0 0 3px rgba(255,122,0,0.15);
}
.order-form {
  animation: pop 0.4s ease-out;
}

@keyframes pop {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
  .hero-img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    filter:saturate(1.02) contrast(1.02);
  }
@media (max-width: 768px) {
  .order-form {
    margin: 12px;
  }

  .order-btn {
    position: sticky;
    bottom: 12px;
  }
}
  /* мягкий “shine” поверх картинки */
  .hero-glow{
    position:absolute;
    inset:-30%;
    mix-blend-mode: screen;
    pointer-events:none;
  }

  @media (max-width: 920px){
    .hero-grid{grid-template-columns:1fr}
    .hero-media{ border-radius: 22px; margin-top: 10px;}
  }
   .pricebar{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:14px;
    margin:14px 0 8px;
    padding:14px 16px;
    border-radius:18px;
    background:linear-gradient(180deg, rgba(15,23,42,.04), rgba(15,23,42,.02));
    border:1px solid rgba(15,23,42,.08);
  }
  .price-left{display:grid; gap:8px}
  .deal-badge{
    display:inline-flex; align-items:center; gap:8px;
    padding:7px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    letter-spacing:-.01em;
    color:#166534;
    background:rgba(34,197,94,.12);
    border:1px solid rgba(34,197,94,.22);
    width:max-content;
  }
  .deal-badge i{
    width:8px; height:8px; border-radius:999px;
    background:#16a34a;
    box-shadow:0 0 0 4px rgba(34,197,94,.14);
    display:inline-block;
  }
  .price-row{display:flex; align-items:baseline; gap:10px; flex-wrap:wrap}
  .price-now{
    font-size:55px;
    line-height:1;
    font-weight:900;
    letter-spacing:-.03em;
    color:#dc0303;
  }
  .price-old{
    font-size:16px;
    font-weight:800;
    color:#94a3b8;
    text-decoration:line-through;
  }
  .price-save{
    font-size:13px;
    font-weight:800;
    color:#0f172a;
    background:rgba(14,165,233,.10);
    border:1px solid rgba(14,165,233,.18);
    padding:6px 10px;
    border-radius:999px;
  }
  .price-right{
    text-align:right;
    color:#64748b;
    font-size:12px;
    line-height:1.35;
    font-weight:700;
  }
  @media (max-width: 520px){
    .pricebar{flex-direction:column; align-items:flex-start}
    .price-right{text-align:left}
  }
  .ticker-wrap{
    width: 100%;
    overflow: hidden;
    background: rgb(116 116 116 / 38%);
    border-top: 1px solid rgb(55 55 55 / 35%);
    border-bottom: 1px solid rgb(15 23 42 / 32%);}

.ticker{
  display:flex;
  width:max-content;
}

.ticker-track{
  display:flex;
  animation: ticker-scroll 20s linear infinite;
}

.ticker span{
  padding:12px 32px;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
  color:#0b1220;
}

/* Ключ: движение ровно на ширину одного трека */
@keyframes ticker-scroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-100%);
  }
}
 .proof{
    padding:26px 0 10px;
  }
  .proof-head{
    display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
    padding:8px 0 12px;
    border-bottom:1px solid rgba(15,23,42,.08);
    margin-bottom:14px;
  }
  .proof-head h2{
    margin:0;
    font-size:22px;
    letter-spacing:-.02em;
    line-height:1.1;
    color:#0b1220;
  }
  .proof-head p{
    margin:0;
    max-width:64ch;
    color:#5b6475;
    font-size:13px;
    line-height:1.6;
  }

  .proof-grid{
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap:18px;
    align-items:start;
  }

  /* Left: big media */
  .media{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    background:
      radial-gradient(800px 420px at 20% 0%, rgba(14,165,233,.14), transparent 60%),
      radial-gradient(780px 420px at 80% 10%, rgba(34,197,94,.12), transparent 55%),
      linear-gradient(180deg, rgba(15,23,42,.03), rgba(15,23,42,.01));
    border:1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 50px rgba(2,6,23,.08);
    min-height:360px;
  }

  .media-top{
    position:relative;
    padding:18px 18px 10px;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
  }

  .social-proof{
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  .stars{
    display:flex;
    align-items:center;
    gap:6px;
    color:#0b1220;
    font-weight:900;
    letter-spacing:.5px;
    font-size:12px;
  }
  .stars .star{
    width:14px; height:14px;
    display:inline-block;
    background:conic-gradient(from 180deg, rgba(245,158,11,1), rgba(251,191,36,1));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    filter: drop-shadow(0 4px 10px rgba(245,158,11,.18));
  }
  .proof-num{
    display:flex;
    align-items:baseline;
    gap:8px;
    flex-wrap:wrap;
  }
  .proof-num b{
    font-size:30px;
    letter-spacing:-.03em;
    font-weight:950;
    color:#0b1220;
    line-height:1;
  }
  .proof-num span{
    color:#5b6475;
    font-size:13px;
    font-weight:700;
  }
  .quote{
    margin:0;
    color:#64748b;
    font-size:12px;
    line-height:1.55;
    max-width:52ch;
  }

  .jar-stack{
    position:relative;
    width:150px;
    height:170px;
    flex:0 0 150px;
    display:grid;
    align-content:end;
    justify-items:end;
  }
  .jar{
    width:132px;
    height:78px;
    border-radius:18px;
    background:linear-gradient(180deg,#fff,#f3f6fb);
    border:1px solid rgba(15,23,42,.10);
    box-shadow:0 16px 40px rgba(2,6,23,.10);
    position:relative;
    overflow:hidden;
  }
  .jar:before{
    content:"";
    position:absolute;
    inset:10px 12px 12px 12px;
    border-radius:14px;
    background:
      radial-gradient(90px 60px at 25% 25%, rgba(14,165,233,.22), transparent 60%),
      radial-gradient(100px 70px at 70% 65%, rgba(34,197,94,.18), transparent 62%),
      linear-gradient(90deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
  }
  .jar:after{
    content:"CLEAN O₂";
    position:absolute;
    left:16px; top:28px;
    font-weight:950;
    letter-spacing:.06em;
    font-size:12px;
    color:rgba(11,18,32,.78);
  }
  .jar.bottom{transform:translateY(10px)}
  .jar.top{transform:translateY(-6px) translateX(-10px)}

  .media-bottom{
    display:grid;
    grid-template-columns: 1fr;
    gap:12px;
    padding:14px 18px 18px;
  }

  /* Before/After slider */
  .ba{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(15,23,42,.10);
    background:#fff;
    box-shadow: 0 18px 50px rgba(2,6,23,.08);
    aspect-ratio: 16 / 9;
    min-height:220px;
  }
  .ba img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .ba .handle{
    position:absolute;
    top:0; bottom:0;
    left:50%;
    width:2px;
    background:rgba(255,255,255,.85);
    box-shadow:0 0 0 1px rgba(15,23,42,.18), 0 18px 50px rgba(2,6,23,.18);
    pointer-events:none;
  }
  .ba .knob{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:44px; height:44px;
    border-radius:999px;
    background:rgba(255,255,255,.92);
    border:1px solid rgba(15,23,42,.12);
    display:grid;
    place-items:center;
    box-shadow:0 18px 50px rgba(2,6,23,.16);
    pointer-events:none;
  }
  .ba .knob svg{width:22px; height:22px; opacity:.8}

  .ba input[type="range"]{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    cursor:ew-resize;
  }

  .ba-label{
    position:absolute;
    top:12px;
    padding:7px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    letter-spacing:-.01em;
    background:rgba(255,255,255,.85);
    border:1px solid rgba(15,23,42,.10);
    color:#0b1220;
    box-shadow:0 12px 30px rgba(2,6,23,.10);
  }
  .ba-label.before{left:12px}
  .ba-label.after{right:12px}

  /* Right: benefits list + CTA */
  .proof-side{
    padding:4px 0 0;
  }
  .checklist{
    margin:0; padding:0; list-style:none;
  }
  .checklist li{
    display:flex; gap:12px; align-items:flex-start;
    padding:14px 0;
    border-bottom:1px solid rgba(15,23,42,.08);
  }
  .checklist li:last-child{border-bottom:none}
  .check{
    width:22px; height:22px; border-radius:999px;
    background:rgba(34,197,94,.12);
    border:1px solid rgba(34,197,94,.22);
    display:grid; place-items:center;
    flex:0 0 22px;
    margin-top:2px;
  }
  .check svg{width:14px; height:14px; color:#16a34a}
  .checklist b{display:block; margin:0 0 4px; letter-spacing:-.01em}
  .checklist span{color:#0b1220; line-height:1.55}
  .muted{color:#5b6475; font-size:13px; line-height:1.6}

  .side-cta{
    margin-top:14px;
    display:flex; gap:10px; flex-wrap:wrap;
  }
  .btn{
    border:none;
    background:transparent;
    padding:10px 14px;
    border-radius:999px;
    font-weight:800;
    font-size:14px;
    display:inline-flex; gap:10px; align-items:center; justify-content:center;
    cursor:pointer;
    transition:transform .12s ease, background .12s ease, box-shadow .12s ease;
  }
  .btn:hover{transform:translateY(-1px); background:rgba(15,23,42,.04)}
  .btn-primary{
    background:linear-gradient(135deg, #70bcee, #5386ff);
    color:#fff;
    box-shadow:0 16px 40px rgba(2,6,23,.18);
  }
  .btn-primary:hover{box-shadow:0 20px 55px rgba(2,6,23,.22)}
  .hint{
    margin-top:10px;
    color:#64748b;
    font-size:12px;
    line-height:1.55;
  }

  @media (max-width: 980px){
    .proof-grid{grid-template-columns:1fr}
    .jar-stack{display:none}
    .media{min-height:auto}
  }
    /* Clean bubbles / sparkle background */
  .cleanfx{
    position:absolute;
    inset:-40px -40px auto -40px;
    height:240px;
    pointer-events:none;
    overflow:hidden;
    z-index:0;
  }
  .cleanfx .bubble{
    position:absolute;
    bottom:-40px;
    width:18px; height:18px;
    border-radius:999px;
    background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,.25) 55%, rgba(14,165,233,.10) 80%);
    border:1px solid rgba(14,165,233,.16);
    box-shadow: 0 18px 40px rgba(2,6,23,.08);
    opacity:.85;
    animation: floatUp var(--d) linear infinite;
    transform: translate3d(0,0,0);
    filter: blur(.0px);
  }
  .cleanfx .bubble::after{
    content:"";
    position:absolute; inset:3px;
    border-radius:999px;
    background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), transparent 60%);
    opacity:.65;
  }

  @keyframes floatUp{
    0%   { transform: translateY(0) translateX(0) scale(var(--s)); opacity:0; }
    8%   { opacity:.85; }
    60%  { opacity:.75; }
    100% { transform: translateY(-320px) translateX(var(--x)) scale(var(--s)); opacity:0; }
  }

  /* Soft shine sweep on primary CTA */
  .btn-primary{
    position:relative;
    overflow:hidden;
  }
  .btn-primary::before{
    content:"";
    position:absolute;
    top:-40%;
    left:-60%;
    width:45%;
    height:180%;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transform:rotate(18deg);
    animation: shine 3.8s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes shine{
    0%   { left:-70%; opacity:0; }
    20%  { opacity:1; }
    45%  { left:120%; opacity:0; }
    100% { left:120%; opacity:0; }
  }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce){
    .cleanfx .bubble, .btn-primary::before{ animation:none !important; }
  }

  /* Ensure hero content stays above effect */
  .hero, .hero-card, .hero-grid{ position:relative; }
  .hero-content{ position:relative; z-index:2; }
   .cmp{
    position:relative;
    padding:44px 0 34px;
    overflow:hidden;
  }
  .cmp__bg{
    position:absolute; inset:0;
    background:
      radial-gradient(900px 520px at 70% 25%, rgba(56,189,248,.35), transparent 62%),
      radial-gradient(860px 520px at 25% 40%, rgba(148,163,184,.25), transparent 60%),
      linear-gradient(180deg, #eaf7ff 0%, #effbff 45%, #eaf7ff 100%);
    pointer-events:none;
  }
  .cmp__wrap{position:relative; max-width:980px; margin:0 auto; padding:0 18px;}
  .cmp__title{
    margin:0 0 18px;
    text-align:center;
    font-size:clamp(26px, 3vw, 40px);
    letter-spacing:-.03em;
    color:#0b1220;
    font-weight:900;
  }

  /* ВАЖНО: 2 карточки в ОДИН РЯД */
  .cmp__grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:22px;
    align-items:stretch;
  }

  .cmp__card{
    border-radius:26px;
    padding:18px 18px 16px;
    box-shadow: 0 24px 60px rgba(2,6,23,.10);
    position:relative;
  }
  .cmp__card--others{
    background:linear-gradient(180deg, rgba(148,163,184,.45), rgba(226,232,240,.80));
  }
  .cmp__card--ours{
    background:linear-gradient(180deg, rgba(56,189,248,.40), rgba(14,165,233,.22));
    transform: translateY(-6px);
  }

  .cmp__top{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
  }

  .cmp__jar{
    width:76px; height:76px; border-radius:18px;
    background:linear-gradient(180deg, #ffffff, #cbd5e1 55%, #94a3b8);
    box-shadow: 0 18px 40px rgba(2,6,23,.12);
    border:1px solid rgba(15,23,42,.10);
    opacity:.9;
  }

  .cmp__img{
    width:140px;
    height:auto;
    display:block;
    filter: drop-shadow(0 22px 40px rgba(2,6,23,.16));
    user-select:none;
  }

  .cmp__pill{
    padding:9px 18px;
    border-radius:999px;
    font-weight:900;
    letter-spacing:-.02em;
    font-size:18px;
    line-height:1;
  }
  .cmp__pill--others{
    background:rgba(15,23,42,.35);
    color:#fff;
  }
  .cmp__pill--ours{
    background:rgba(14,165,233,.88);
    color:#fff;
    box-shadow:0 16px 34px rgba(14,165,233,.25);
  }

  .cmp__list{margin:0; padding:0; list-style:none; display:grid; gap:12px;}
  .cmp__item{
    display:flex; align-items:center; gap:12px;
    background:rgba(255,255,255,.75);
    border:1px solid rgba(255,255,255,.55);
    border-radius:18px;
    padding:12px 12px;
    backdrop-filter: blur(6px);
  }
  .cmp__text{
    font-weight:800;
    color:#0b1220;
    letter-spacing:-.01em;
  }

  .cmp__icon{
    width:28px; height:28px;
    border-radius:999px;
    display:grid; place-items:center;
    flex:0 0 28px;
  }
  .cmp__icon svg{width:16px; height:16px}
  .cmp__icon--x{
    background:rgba(239,68,68,.12);
    color:#ef4444;
    border:1px solid rgba(239,68,68,.20);
  }
  .cmp__icon--check{
    background:rgba(34,197,94,.14);
    color:#16a34a;
    border:1px solid rgba(34,197,94,.22);
  }

  /* На мобилке складываем в колонку */
  @media (max-width: 820px){
    .cmp__grid{grid-template-columns:1fr; gap:14px}
    .cmp__card--ours{transform:none}
    .cmp__img{width:130px}
  }
  .use {
  padding: 48px 0;
}
.use__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.use__head {
  margin-bottom: 22px;
}
.use__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.use__sub {
  margin-top: 8px;
  color: #5b6475;
  font-size: 14px;
  max-width: 640px;
}

.use__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.use__card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2,6,23,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.use__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 80px rgba(2,6,23,.12);
}

.use__img {
  height: 200px;
  overflow: hidden;
}
.use__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use__content {
  padding: 16px;
}
.use__content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}
.use__content p {
  margin: 0 0 10px;
  color: #5b6475;
  font-size: 14px;
  line-height: 1.55;
}

.use__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.use__tags span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.05);
  font-weight: 800;
}

.use__note {
  margin-top: 18px;
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 980px) {
  .use__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .use__grid {
    grid-template-columns: 1fr;
  }
  .use__img {
    height: 300px;
  }
}
.specs {
  padding: 46px 0;
}
.specs__wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 18px;
}
.specs__title {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0b1220;
}

.specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px;
}

.spec {
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 40px rgba(2,6,23,.06);
}

.spec__label {
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.spec__value {
  color: #0b1220;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.specs__note {
  margin-top: 16px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .specs__grid {
    grid-template-columns: 1fr;
  }
  .spec {
    flex-direction: column;
    align-items: flex-start;
  }
  .spec__value {
    text-align: left;
  }
}
.footer {
  background: #0b1220;
  color: #e5e7eb;
  padding: 46px 0 24px;
}

.footer__wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 24px;
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(180deg, #38bdf8, #0ea5e9);
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.footer__desc {
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5f5;
}

.footer h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 13px;
  transition: color .15s ease;
}

.footer a:hover {
  color: #38bdf8;
}

.footer__contacts p {
  font-size: 13px;
  margin: 0 0 8px;
  color: #cbd5f5;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
}

.footer__note {
  max-width: 720px;
  line-height: 1.5;
}

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