
    :root {
      /* Основная палитра на основе #80c6d5 */
      --primary: #80c6d5;
      --primary-light: #e0f2f6;
      --primary-dark: #5aa4b5;
      --secondary: #d5a6bd;
      --secondary-light: #f5e6ee;
      --accent: #ffd166;
      --dark: #2c3e50;
      --light: #f8fcfd;
      --gray: #7f8c8d;
      --success: #88d3ce;
      --border: #e0f2f6;

      /* Градиенты */
      --gradient-primary: linear-gradient(135deg, #80c6d5 0%, #88d3ce 100%);
      --gradient-light: linear-gradient(135deg, #e0f2f6 0%, #f8fcfd 100%);
      --gradient-accent: linear-gradient(135deg, #80c6d5 0%, #d5a6bd 100%);
      --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(224,242,246,0.7) 100%);
      --gradient-hero: linear-gradient(135deg, rgba(128,198,213,0.9) 0%, rgba(136,211,206,0.85) 100%);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: var(--light);
      color: var(--dark);
      line-height: 1.6;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Герой-секция */
    .hero {
      padding: 20px 0 100px;
      background: var(--gradient-light);
      position: relative;
      overflow: hidden;
      margin-top: 2em;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: var(--gradient-hero);
      opacity: 0.15;
      top: -300px;
      right: -200px;
      z-index: 0;
    }

    .hero-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

    .hero-text {
      flex: 1;
      max-width: 600px;
    }

    .hero h1 {
      font-size: 42px;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--dark);
    }

    .hero h1 span {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero p {
      font-size: 18px;
      color: var(--gray);
      margin-bottom: 18px;
    }

    .hero-image {
      flex: 1;
      text-align: center;
    }

    .hero-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(128, 198, 213, 0.2);
    }

    /* Особенности */
    .features {
      padding: 100px 0;
      background: white;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 36px;
      margin-bottom: 15px;
      color: var(--dark);
    }

    .section-title p {
      color: var(--gray);
      max-width: 600px;
      margin: 0 auto;
    }

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

    .feature-card {
      background: var(--gradient-card);
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid var(--border);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(128, 198, 213, 0.15);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      color: white;
      font-size: 32px;
    }

    .feature-card h3 {
      margin-bottom: 15px;
      color: var(--dark);
    }

    /* Для кого создана */
    .for-whom {
      padding: 100px 0;
      background: white;
    }

    .for-whom-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .for-whom-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      padding: 20px;
      background: var(--gradient-card);
      border-radius: 15px;
      border: 1px solid var(--border);
    }

    .for-whom-icon {
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      margin-right: 20px;
      flex-shrink: 0;
    }

    /* Отзывы */
    .testimonials {
      padding: 100px 0;
      background: var(--gradient-light);
    }

    .testimonial-slider {
      max-width: 800px;
      margin: 0 auto;
    }

    .testimonial-card {
      background: var(--gradient-card);
      padding: 40px;
      border-radius: 20px;
      text-align: center;
      border: 1px solid var(--border);
    }

    .testimonial-text {
      font-size: 18px;
      font-style: italic;
      margin-bottom: 25px;
      color: var(--dark);
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--gradient-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
    }

    .author-info h4 {
      color: var(--dark);
      margin-bottom: 5px;
    }

    .author-info p {
      color: var(--gray);
      font-size: 14px;
    }

    /* CTA секция */
    .cta-section {
      padding: 100px 0;
      background: var(--gradient-accent);
      text-align: center;
      color: white;
    }

    .cta-section h2 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 18px;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    /* Адаптивность */
    @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }

      .hero-text {
        margin-bottom: 50px;
      }

      .hero h1 {
        font-size: 36px;
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding: 180px 0 80px;
      }

      .hero h1 {
        font-size: 32px;
      }
    }

    /* ====== СТИЛИ ТЕСТА ====== */
    .self-care-test {
      max-width: 600px;
      margin: 40px auto;
      padding: 30px;
      background: var(--gradient-card);
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(128, 198, 213, 0.2);
      font-family: 'Segoe UI', system-ui, sans-serif;
      color: #1f2937;
      border: var(--border);

    }

    .self-care-test h2 {
      color: var(--primary);
      text-align: center;
      margin-bottom: 10px;
      font-size: 1.8rem;
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    
    }

    .test-description {
      text-align: center;
      color: #6b7280;
      margin-bottom: 30px;
      font-size: 1rem;
      line-height: 1.5;
    }

    .question-item {
      background: white;
      margin-bottom: 15px;
      padding: 18px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 6px rgba(124, 58, 237, 0.05);
      border-left: var(--primary);
      transition: all 0.3s ease;
    }

    .question-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(124, 58, 237, 0.08);
    }

    .question-text {
      font-weight: 500;
      margin-bottom: 12px;
      color: #374151;
      font-size: 1.05rem;
    }

    .answer-buttons {
      display: flex;
      gap: 15px;
    }

    .answer-btn {
      padding: 10px 24px;
      border: var(--border);
      background: white;
      border-radius: 50px;
      cursor: pointer;
      font-weight: 500;
      transition: all 0.2s ease;
      color: #555;
      flex: 1;
      user-select: none;
    }

    .answer-btn:hover {
      background: var(--primary-light);
      border-color: #80c6d5;
    }

    .answer-btn.selected {
      background: var(--gradient-primary);
      color: var(--border);
      border-color: #7c3aed;
    }

    .submit-btn,
    .retry-btn,
    .beautylab-btn {
      display: block;
      width: 100%;
      padding: 16px;
      background: var(--gradient-primary);
      color: var(--border);
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
      text-decoration: none;
      text-align: center;
    }

    .submit-btn:hover,
    .retry-btn:hover,
    .beautylab-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    }

    .submit-btn:disabled {
      background: #d1d5db;
      background-image: none;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .result-container {
      background: var(--gradient-primary);
      padding: 25px;
      border-radius: 15px;
      margin-top: 30px;
      text-align: center;
      border: 2px dashed #c4b5fd;
      animation: fadeIn 0.8s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .result-container h3 {
      color: #7c3aed;
      margin-bottom: 15px;
      background: linear-gradient(to right, #7c3aed, #a855f7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    #resultText {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #374151;
      margin-bottom: 14px;
    }

    .retry-btn {
      background: linear-gradient(to right, #ec4899, #f472b6);
      box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    }

    .retry-btn:hover {
      box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
    }

    .progress-text {
      text-align: center;
      margin-top: 15px;
      color: #9ca3af;
      font-size: 0.9rem;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
      70% { box-shadow: 0 0 0 15px rgba(124, 58, 237, 0); }
      100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
    }

    .micro-note {
      font-size: 0.85rem;
      color: #9ca3af;
      margin-top: 8px;
    }
 