/* Ваш CSS */
  /* ========= Design tokens ========= */
    :root {
      --maxw: 1100px;
      --radius: 18px;
      --shadow-1: 0 2px 10px rgba(0,0,0,.06);
      --shadow-2: 0 10px 35px rgba(0,0,0,.12);
      --bg: #ffffff;
      --bg-soft: #f6f8fb;
      --text: #0f172a;
      --muted: #5b6779;
      --line: #e5e7eb;
      --accent: #2563eb; /* основной бренд‑синий */
      --accent-2: #1e40af; /* тёмный синий */
      --success: #16a34a;
    }
    @media (prefers-color-scheme: dark) {
      :root {
        --bg: #0b0f19;
        --bg-soft: #0f1424;
        --text: #e5e7eb;
        --muted: #99a3b2;
        --line: #1f2937;
        --shadow-1: none;
        --shadow-2: 0 12px 40px rgba(0,0,0,.5);
      }
    }

    /* ========= Base ========= */
    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--text);
      background: radial-gradient(1400px 900px at 80% -20%, rgba(37,99,235,.09), transparent 50%), var(--bg);
      line-height: 1.6;
    }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { max-width: 100%; height: auto; display: block; }
    .container { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; }
    .section { padding: 72px 0; }
    .muted { color: var(--muted); }
    .chip { display:inline-block; padding:.4rem .65rem; border:1px solid var(--line); border-radius:999px; font-size:.8rem }
    .btn { display:inline-flex; align-items:center; gap:.6rem; padding:.85rem 1.1rem; border-radius:12px; border:1px solid var(--line); background: var(--bg); color: var(--text); box-shadow: var(--shadow-1); font-weight:600 }
    .btn:hover { transform: translateY(-1px); transition: .2s ease; }
    .btn.primary { background: linear-gradient(180deg, var(--accent), var(--accent-2)); color:#fff; border-color:transparent }
    .btn.ghost { background: transparent }
    .badge { font: 600 .75rem/1 system-ui; padding:.35rem .55rem; border-radius:10px; background: rgba(37,99,235,.12); color: var(--accent) }
    .grid { display:grid; gap: 20px; }
    .card { background: var(--bg-soft); border:1px solid var(--line); border-radius: var(--radius); padding: 22px; }
    .card.hover:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); transition: .25s ease; }

    /* ========= Header ========= */
    header {
      position: sticky; top: 0; z-index: 40; backdrop-filter: saturate(140%) blur(8px);
      background: color-mix(in oklab, var(--bg) 85%, transparent);
      border-bottom: 1px solid var(--line);
    }
    .nav { display:flex; align-items:center; justify-content:space-between; height:64px }
    .brand { display:flex; align-items:center; gap:.6rem; font-weight:800 }
    .brand .logo { width: 34px; height: 34px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: var(--shadow-1); }
    .menu { display:flex; gap: 18px; align-items:center }
    .menu a { font-weight:600; color: inherit }
    .lang { margin-left: 8px; }

    /* ========= Hero ========= */
    .hero { padding: 72px 0 36px; }
    .hero-wrap { display:grid; gap:28px; grid-template-columns: 1.2fr .8fr; align-items:center }
    .hero h1 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.1; margin: 0 0 10px }
    .hero p { font-size: clamp(16px, 2vw, 18px); margin: 0 0 22px }
    .hero .cta { display:flex; flex-wrap:wrap; gap:12px; align-items:center }
    .hero .hero-card { padding: 14px; border-radius: var(--radius); background: var(--bg-soft); border:1px solid var(--line) }

    /* ========= Features ========= */
    .features .grid { grid-template-columns: repeat(3, 1fr) }
    .feature h3 { margin:.2rem 0 .3rem; font-size: 1.05rem }
    .feature p { margin:0; font-size:.95rem }


    /* ========= Functions ========= */
    .functions .grid { grid-template-columns: repeat(3, 1fr) }
    .func { display:flex; gap:12px; align-items:flex-start }
    .func .ico { width:38px; height:38px; border-radius:10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); flex: 0 0 auto }
    
    /* ========= Pricing ========= */
    .pricing .grid { grid-template-columns: repeat(2, 1fr) }
    .price { padding: 26px }
    .price h3 { margin: 0 0 2px }
    .price .val { font: 800 32px/1 system-ui; margin: 4px 0 10px }
    .price ul { padding: 0 0 0 1.1rem; margin: 0 0 18px }

    /* ========= Footer ========= */
    footer { padding: 36px 0; border-top:1px solid var(--line); }

    /* ========= Responsive ========= */
    @media (max-width: 900px) {
      .hero-wrap { grid-template-columns: 1fr }
      .features .grid, .functions .grid, .pricing .grid { grid-template-columns: 1fr 1fr }
    }
    @media (max-width: 640px) {
      .features .grid, .functions .grid, .pricing .grid { grid-template-columns: 1fr }
    }
	
.card.func {
  display: flex;
  flex-direction: column; /* теперь элементы идут сверху вниз */
  align-items: center;    /* по центру */
  text-align: center;
  
}
.card.func h3 a {color:#ffffff;}
.card.func .card-img {
  width: 100%;
  max-width: 300px; /* ограничение, чтобы не разъезжалась */
  border-radius: 8px;
 margin: 0 auto 12px; /* сверху 0, по бокам auto, снизу 12px */
  display: block;   
}

.btn.outline {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
    transition: 0.2s;
  }
  .btn.outline:hover {
    border-color: #666;
    color: #000;
  }

    main {
      max-width: 1200px;
      margin: 30px auto;
      padding: 0 20px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .blog-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-card-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-card-content h3 {
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--accent);
      font-size: 1.3em;
    }

    .blog-card-content p {
      color: var(--text-muted);
      flex: 1;
      margin-bottom: 15px;
    }

    .blog-card-content a {
      text-decoration: none;
      background: var(--accent);
      color: white;
      padding: 10px 15px;
      border-radius: 8px;
      font-weight: bold;
      align-self: flex-start;
      transition: background 0.3s;
    }

    .blog-card-content a:hover {
      background: #1d4ed8;
    }

    @media(max-width:600px){
      header h1 { font-size: 1.5em; }
    }
   /* Кнопка */
    #scrollTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 50%;
      background-color: #2563eb;
      color: white;
      font-size: 24px;
      cursor: pointer;
      display: none;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background-color 0.3s, transform 0.3s;
    }

    #scrollTopBtn:hover {
      background-color: #1e4fc9;
      transform: scale(1.1);
    }
	#reviews {
  padding: 40px 20px;
  background: transparent;/*#f7f9fc;*/
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
}

#reviews h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.8em;
}

#reviews blockquote {
  background: #f7f9fc;
  border-left: 4px solid #3b82f6; /* синий акцент */
  margin: 20px 0;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

#reviews blockquote p {
  color: #000000;	
  font-size: 1.1em;
  line-height: 1.5;
  margin: 0 0 8px;
}

#reviews cite {
  display: block;
  text-align: right;
  font-style: normal;
  font-weight: 500;
  color: #555;
}