:root {
      --bg-main: #04041c;
      --bg-card: rgba(255,255,255,0.03);
      --border-soft: rgba(255,255,255,0.08);
      --text-main: #ffffff;
      --text-soft: #d6d5f7;
      --error: #ff6b6b;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color: var(--text-main);
      line-height: 1.6;
      background:
        radial-gradient(circle at top left, rgba(214, 213, 247,0.24), transparent 60%),
        linear-gradient(135deg, rgba(133, 0, 1,0.98), rgba(9, 1, 183,0.98));
      /* Премиум-фон с “золотыми крупицами” */
      background-image:
        radial-gradient(circle at 0% 0%, rgba(9, 1, 183,0.23) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(9, 1, 183,0.18) 0, transparent 55%),
        radial-gradient(circle, rgba(9, 1, 183,0.14) 1px, transparent 1px);
      background-size: auto, auto, 22px 22px;
      background-repeat: no-repeat, no-repeat, repeat;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: 90%;
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ---------- HEADER ---------- */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 10;
      background:
        radial-gradient(circle at top left, rgba(214, 213, 247,0.24), transparent 60%),
        linear-gradient(135deg, rgba(9, 1, 183,0.98), rgba(133, 0, 1,0.98));
      border-bottom: 1px solid rgba(255,255,255,0.06);
      backdrop-filter: blur(10px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
    }

    .header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo {
      width: 38px;
      height: 38px;
      border-radius: 8px; /* квадрат с лёгким скруглением */
      object-fit: contain;
      border: 1px solid rgba(255,255,255,0.15);
      background: #111;
    }

    .logo-right {
      width: 38px;
      height: 38px;
      border-radius: 8px; /* квадрат */
      object-fit: cover;
      border: 1px solid rgba(255,255,255,0.25);
      background: #000;
    }

    .brand-name {
      font-size: 13px;
      color: var(--text-soft);
    }

    .header-center {
      text-align: center;
      font-weight: 800;
      font-size: 16px;
      letter-spacing: 0.08em;
      color: #ffffff;
      text-transform: uppercase;
    }

    .header-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    /* ---------- HERO + VIDEO ---------- */
    .hero {
      padding: 32px 0 18px;
      text-align: center;
    }

    .hero h1 {
      font-size: 28px;
      margin-bottom: 12px;
      color: #0901b7;
    }

    .hero-tagline {
      font-size: 23px;
      color: #0901b7;
      max-width: 700px;
      margin: 0 auto 12px;
    }

    .hero-sub {
      font-size: 23px;
      color: #0901b7;
      max-width: 520px;
      margin: 0 auto;
    }

    .phone-video-section {
      padding: 10px 0 35px;
      display: flex;
      justify-content: center;
    }

    .phone-frame {
      position: relative;
      width: 100%;
      max-width: 420px;
      background: radial-gradient(circle at top, #222 0, #04041c 55%, #000 100%);
      border-radius: 32px;
      padding: 14px 10px 18px;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow:
        0 0 0 1px rgba(0,0,0,0.9),
        0 18px 40px rgba(0,0,0,0.8);
    }

    .phone-top {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
      gap: 6px;
    }

    .phone-speaker {
      width: 60px;
      height: 5px;
      border-radius: 999px;
      background: #111;
    }

    .phone-camera {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #58f21f;
      border: 2px solid #222;
    }

    .phone-screen {
      border-radius: 24px;
      overflow: hidden;
      background: #000;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .phone-screen video {
      width: 100%;
      display: block;
      aspect-ratio: 9 / 16;
      object-fit: cover;
    }

    .phone-bottom {
      margin-top: 10px;
      display: flex;
      justify-content: center;
    }

    .phone-home {
      width: 58px;
      height: 6px;
      border-radius: 999px;
      background:
        radial-gradient(circle at top left, rgba(214, 213, 247, 0.24), transparent 65%),
        linear-gradient(135deg, rgba(133, 0, 1, 0.98), rgba(46, 3, 145, 0.98));
    }

    /* ---------- SECTIONS ---------- */
    .section {
      padding: 28px 0;
    }

    .section h2 {
      text-align: center;
      color: #0901b7;
      font-size: 28px;
      margin-bottom: 8px;
    }

    .section-sub {
      text-align: center;
      color: #0901b7;
      font-size: 23px;
      max-width: 600px;
      margin: 0 auto 20px;
    }

    /* ---------- FORM ---------- */
    .form-card {
      max-width: 800px;
      margin: 0 auto;
      border-radius: 18px;
      padding: 22px 20px 20px;
      /* шампанский фон + подсветка */
      background:
        radial-gradient(circle at top left, rgba(214, 213, 247, 0.24), transparent 65%),
        linear-gradient(135deg, rgba(133, 0, 1, 0.98), rgba(46, 3, 145, 0.98));
      border: 1px solid #f78384;
      box-shadow:
        0 0 24px rgba(9, 1, 183,0.40),
        0 18px 40px rgba(0,0,0,0.75);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px 18px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
      font-size: 14px;
      color: #fff;
    }

    .form-field label span {
      color:  #f78384;
    }

    input, select {
      padding: 9px 10px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.26);
      background: rgba(6,6,10,0.95);
      color: var(--text-main);
      font-size: 14px;
      outline: none;
    }

    input::placeholder {
      color: #d6d5f7;
    }

    input:focus, select:focus {
      border-color:  #f78384;
      box-shadow: 0 0 8px rgba(9, 1, 183,0.6);
    }

    .form-footer {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-note {
      font-size: 12px;
      color: #fff;
      opacity: 0.9;
    }

	
.btn-primary {
  position: relative;      /* ❗ нужно для псевдоэлемента */
  overflow: hidden;        /* ❗ прячем блик за краями */

  display: inline-block;
  text-align: center;
  text-decoration: none;

  background:
    radial-gradient(circle at top left, rgba(214, 213, 247,0.24), transparent 60%),
    linear-gradient(135deg, rgba(9, 1, 183,0.98), rgba(133, 0, 1,0.98));
  color: #fff;
  border-radius: 999px;
  padding: 11px 24px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(9, 1, 183,0.7);
}

/* ✨ Блик */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );

  transform: skewX(-20deg);
  animation: shine 2.8s infinite;
}

/* 🎬 Анимация блика */
@keyframes shine {
  0% {
    left: -75%;
  }
  60% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(9, 1, 183, 0.9);
  transform: translateY(-1px);
}
.btn-wrapper {
  text-align: center;
}

    /* ---------- PROFILE ---------- */
    .profile-card {
      max-width: 900px;
      margin: 0 auto;
      background:
        radial-gradient(circle at top left, rgba(214, 213, 247,0.24), transparent 60%),
        linear-gradient(135deg, rgba(133, 0, 1,0.98), rgba(9, 1, 183,0.98));
      border-radius: 18px;
      border: 1px solid var(--border-soft);
      padding: 22px 22px;
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: 20px;
    }

    .profile-photo-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .profile-photo {
      width: 190px;
      height: 190px;
      border-radius: 18px;
      object-fit: cover;
      border: 2px solid rgba(9, 1, 183,0.4);
    }

    .profile-name {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .profile-role {
      font-size: 14px;
      color:  #f78384;
      margin-bottom: 10px;
    }

    .profile-text {
      font-size: 14px;
      color: var(--text-soft);
      margin-bottom: 10px;
    }

    .profile-bullets {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 14px;
      color: var(--text-soft);
    }

    .profile-bullets li::before {
      content: "• ";
      color:  #f78384;
    }

    /* ---------- INFO BLOCKS ---------- */
    .info-grid {
      margin-top: 10px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 16px;
    }

    .info-card {
      background:
        radial-gradient(circle at top left, rgba(214, 213, 247,0.24), transparent 60%),
        linear-gradient(135deg, rgba(133, 0, 1,0.98), rgba(9, 1, 183,0.98));
      border-radius: 16px;
      border: 1px solid var(--border-soft);
      padding: 14px 14px 16px;
      font-size: 14px;
      color: var(--text-soft);
    }

    .info-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background:
        radial-gradient(circle at top left, rgba(214, 213, 247,0.24), transparent 60%),
        linear-gradient(135deg, rgba(133, 0, 1,0.98), rgba(9, 1, 183,0.98));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 6px;
      font-size: 15px;
      color: #fff;
      font-weight: 700;
    }

    .info-title {
      font-size: 15px;
      color: var(--text-main);
      margin-bottom: 4px;
      font-weight: 600;
    }

    /* ---------- FAQ ---------- */
    .faq-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }

    details {
      background: var(--bg-card);
      border-radius: 14px;
      border: 1px solid #660043; /* золотая рамка */
      padding: 10px 14px;
      margin-bottom: 10px;
      cursor: pointer;
      box-shadow: 0 0 22px rgba(9, 1, 183,0.22); /* мягкая золотая подсветка */
    }

    summary {
      list-style: none;
      font-size: 19px;
      color: #660043;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    .faq-answer {
      margin-top: 8px;
      font-size: 18px;
      color: #660043;
    }

    /* ---------- FOOTER ---------- */
    .footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0 26px;
      margin-top: 24px;
      font-size: 13px;
      color: #660043;
    }

    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 14px;
      justify-content: center;
    }

    .social-links a {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid #f78384;
      background: radial-gradient(circle at top, #000, #160049);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 18px rgba(9, 1, 183,0.26);
    }

    .social-links img {
      width: 75%;
      height: 75%;
      object-fit: contain;
    }

    .footer-note {
      font-size: 12px;
      opacity: 0.7;
      text-align: center;
    }

    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 900px) {
      .profile-card {
        grid-template-columns: 1fr;
        text-align: left;
      }
      .profile-photo-wrap {
        justify-content: flex-start;
      }
      .info-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
    }

    @media (max-width: 720px) {
      .header-inner {
        gap: 12px;
      }
      .header-center {
        font-size: 13px; /* на мобилке поменьше, но видно */
        letter-spacing: 0.06em;
      }
      .hero h1 {
        font-size: 23px;
      }
      .hero-tagline, .hero-sub {
        font-size: 14px;
      }
      .form-grid {
        grid-template-columns: 1fr;
      }
      .info-grid {
        grid-template-columns: 1fr;
      }
    }