/* Каркас проработанных сегментных лендингов (for/speakers, for/organizers, for/teams).
   Извлечён из for-hosts.html, чтобы не дублировать разметку стилей на каждой странице.
   Подключается вместе с qract.css; правила ниже намеренно идут после него.
   for-hosts и for-birthday продолжают использовать свои инлайновые копии. */
:root {
      --bg: #0B1320;
      --bg-2: #0F1828;
      --card: #131C2B;
      --border: rgba(255,255,255,0.08);
      --border-strong: rgba(255,255,255,0.14);
      --txt: #ffffff;
      --muted: #7A8AA0;
      --muted-2: rgba(255,255,255,0.55);
      --mint: #4ECBA0;
      --blue: #5B8DEF;
      --amber: #F5A623;
      --pink: #E8547A;
      --purple: #8B5CF6;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body {
      background: var(--bg);
      color: var(--txt);
      font-family: Inter, system-ui, sans-serif;
      -webkit-font-smoothing: antialiased;
    }
    body { min-height: 100vh; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }

    /* ── Nav ─────────────────────────────────────── */
    .nav {
      position: sticky; top: 0; z-index: 50;
      backdrop-filter: blur(12px);
      background: rgba(11,19,32,0.8);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1080px; margin: 0 auto;
      padding: 14px 18px;
      display: flex; align-items: center; gap: 16px;
    }
    .nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
    .nav-logo img { height: 28px; width: auto; }
    .nav-crumb {
      font-size: 13px; color: var(--muted);
      display: inline-flex; align-items: center; gap: 8px;
      margin-left: 12px;
    }
    .nav-crumb a:hover { color: var(--mint); transition: color 0.15s; }
    .nav-crumb .sep { opacity: 0.35; }
    .nav-spacer { flex: 1; }
    .nav-ghost {
      font-size: 13px; color: var(--muted-2);
      padding: 8px 14px; border-radius: 8px;
      border: 1px solid var(--border);
      transition: all 0.15s;
    }
    .nav-ghost:hover { color: var(--txt); border-color: var(--border-strong); }
    .nav-primary {
      font-size: 13px; font-weight: 700;
      background: var(--mint); color: #0B1320;
      padding: 8px 16px; border-radius: 8px;
      transition: background 0.15s;
    }
    .nav-primary:hover { background: #3db88e; }

    /* ── Container ───────────────────────────────── */
    .container { max-width: 1080px; margin: 0 auto; padding: 0 18px; }

    /* ── Section base ────────────────────────────── */
    section { padding: 80px 0; }
    .section-h {
      font-size: 36px; font-weight: 800; line-height: 1.1;
      letter-spacing: -0.02em; margin-bottom: 12px;
    }
    .section-sub {
      font-size: 16px; line-height: 1.6; color: var(--muted-2);
      margin-bottom: 48px; max-width: 640px;
    }

    /* ── Hero ────────────────────────────────────── */
    .hero { padding: 44px 0 100px; position: relative; overflow: hidden; }
    .hero::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse at 18% 30%, rgba(78,203,160,0.14), transparent 52%),
        radial-gradient(ellipse at 80% 65%, rgba(91,141,239,0.1), transparent 50%);
    }
    .hero-inner { position: relative; max-width: 760px; }
    .hero-eyebrow {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 999px;
      background: rgba(78,203,160,0.12); color: var(--mint);
      border: 1px solid rgba(78,203,160,0.28);
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: 'Nunito', sans-serif;
      font-size: 56px; font-weight: 900; line-height: 1.05;
      letter-spacing: -0.02em; margin-bottom: 20px;
    }
    .hero h1 .accent { color: var(--mint); }
    .hero-desc {
      font-size: 15px; line-height: 1.6; color: var(--muted-2);
      margin-bottom: 32px; max-width: 600px;
    }
    .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-primary-lg {
      background: var(--mint); color: #0B1320;
      padding: 14px 24px; border-radius: 12px;
      font-size: 15px; font-weight: 800;
      box-shadow: 0 12px 32px rgba(78,203,160,0.22);
      transition: all 0.15s;
    }
    .btn-primary-lg:hover { background: #3db88e; transform: translateY(-1px); }
    .btn-ghost-lg {
      background: transparent; color: var(--txt);
      padding: 14px 24px; border-radius: 12px;
      font-size: 15px; font-weight: 700;
      border: 1px solid var(--border-strong);
      transition: all 0.15s;
    }
    .btn-ghost-lg:hover { background: rgba(255,255,255,0.04); }
    .hero-tags {
      display: flex; gap: 20px; flex-wrap: wrap;
      margin-top: 24px; font-size: 13px; color: var(--muted);
    }
    .hero-tags span { display: inline-flex; align-items: center; gap: 6px; }
    .hero-tag-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--mint); flex-shrink: 0;
    }

    /* ── Pain cards ──────────────────────────────── */
    .pains { background: var(--bg-2); }
    .pains-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    }
    .pain-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 28px;
    }
    .pain-num {
      font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--pink); margin-bottom: 14px;
    }
    .pain-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
    .pain-card p { font-size: 14px; line-height: 1.6; color: var(--muted-2); }

    /* ── Features ────────────────────────────────── */
    .features { padding: 100px 0; }
    .feature-row {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
      align-items: center; margin-bottom: 96px;
    }
    .feature-row:last-child { margin-bottom: 0; }
    .feature-row.reverse .feature-content { order: 2; }
    .feature-row.reverse .feature-preview { order: 1; }
    .feature-eyebrow {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 6px; margin-bottom: 14px;
    }
    .feature-eyebrow.pink  { background: rgba(232,84,122,0.12); color: var(--pink); }
    .feature-eyebrow.mint  { background: rgba(78,203,160,0.12); color: var(--mint); }
    .feature-eyebrow.amber { background: rgba(245,166,35,0.12); color: var(--amber); }
    .feature-content h2 {
      font-family: 'Nunito', sans-serif;
      font-size: 30px; font-weight: 800; line-height: 1.1;
      letter-spacing: -0.02em; margin-bottom: 14px;
    }
    .feature-content > p {
      font-size: 15px; line-height: 1.65; color: var(--muted-2); margin-bottom: 22px;
    }
    .feature-bullets { list-style: none; margin-bottom: 0; }
    .feature-bullets li {
      padding: 10px 0 10px 28px; position: relative;
      font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5;
      border-bottom: 1px solid var(--border);
    }
    .feature-bullets li:last-child { border-bottom: none; }
    .feature-bullets li::before {
      content: '';
      position: absolute; left: 0; top: 14px;
      width: 16px; height: 16px; border-radius: 4px;
      background: rgba(78,203,160,0.15);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%234ECBA0' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    /* ── Feature preview box ─────────────────────── */
    .feature-preview {
      aspect-ratio: 16/10;
      background: linear-gradient(180deg, #0a0f1a, #060c16);
      border: 1px solid var(--border);
      border-radius: 18px; overflow: hidden; position: relative;
      box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    }
    .pv-bar {
      position: absolute; top: 0; left: 0; right: 0;
      padding: 12px 16px;
      background: rgba(0,0,0,0.35);
      backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: space-between;
      z-index: 5;
    }
    .pv-bar-title {
      font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85);
    }
    .pv-bar-badge {
      font-size: 10px; font-weight: 700;
      padding: 3px 8px; border-radius: 999px;
      background: rgba(0,0,0,0.4); border: 1px solid rgba(78,203,160,0.35);
      color: var(--mint);
    }

    /* Live wall (поздравления) */
    .pv-live {
      position: absolute; inset: 46px 14px 14px;
      display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7px;
    }
    .pv-wish {
      border-radius: 8px; padding: 10px 9px;
      font-size: 10.5px; color: #fff; font-weight: 600; line-height: 1.4;
      animation: wishIn 0.5s ease-out backwards;
    }
    .pv-wish.c1 { background: linear-gradient(135deg, #E8547A, #b83558); animation-delay: 0s; }
    .pv-wish.c2 { background: linear-gradient(135deg, #5B8DEF, #3a68c4); animation-delay: 0.08s; }
    .pv-wish.c3 { background: linear-gradient(135deg, #4ECBA0, #2f9070); animation-delay: 0.16s; }
    .pv-wish.c4 { background: linear-gradient(135deg, #F5A623, #c47f0e); animation-delay: 0.24s; }
    .pv-wish.c5 { background: linear-gradient(135deg, #8B5CF6, #6237c4); animation-delay: 0.32s; }
    .pv-wish.c6 { background: linear-gradient(135deg, #4ECBA0, #1e7a52); animation-delay: 0.4s; }
    .pv-wish.new { box-shadow: 0 0 0 2px var(--mint), 0 6px 16px rgba(78,203,160,0.28); animation: wishPulse 2s ease-in-out infinite; }
    @keyframes wishIn { from { opacity:0; transform:scale(0.85); } to { opacity:1; transform:scale(1); } }
    @keyframes wishPulse {
      0%,100% { box-shadow: 0 0 0 2px var(--mint), 0 6px 16px rgba(78,203,160,0.28); }
      50% { box-shadow: 0 0 0 3px rgba(78,203,160,0.6); }
    }

    /* Photo wall */
    .pv-photo {
      position: absolute; inset: 46px 14px 14px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 5px;
    }
    .pv-cell {
      border-radius: 5px; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .pv-cell.featured { grid-row: span 2; grid-column: span 2; }
    .pv-cell.featured.new { box-shadow: 0 0 0 2px var(--mint); animation: wishPulse 2s ease-in-out infinite; }
    .pv-cell-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.7); }
    .pv-cell.p1 { background: linear-gradient(135deg, #4ECBA0, #2a8a6a); }
    .pv-cell.p2 { background: linear-gradient(135deg, #5B8DEF, #2d4ba3); }
    .pv-cell.p3 { background: linear-gradient(135deg, #E8547A, #952d50); }
    .pv-cell.p4 { background: linear-gradient(135deg, #F5A623, #a26b13); }
    .pv-cell.p5 { background: linear-gradient(135deg, #8B5CF6, #6248b8); }
    .pv-cell.p6 { background: linear-gradient(135deg, #34C9E8, #1a7d92); }

    /* Quiz */
    .pv-quiz { position: absolute; inset: 46px 14px 14px; display: flex; flex-direction: column; gap: 10px; }
    .pv-qbox {
      background: rgba(245,166,35,0.1);
      border: 1px solid rgba(245,166,35,0.28);
      border-radius: 10px; padding: 14px;
    }
    .pv-qtimer {
      display: inline-flex; align-items: center; gap: 4px;
      background: var(--amber); color: #0B1320;
      padding: 2px 8px; border-radius: 999px;
      font-size: 10px; font-weight: 800; margin-bottom: 8px;
    }
    .pv-qtext { font-size: 12px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
    .pv-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
    .pv-opt {
      background: rgba(255,255,255,0.06); border-radius: 5px;
      padding: 5px 7px; font-size: 10px; font-weight: 600;
    }
    .pv-opt.correct { background: rgba(78,203,160,0.2); color: var(--mint); }
    .pv-lb { display: flex; flex-direction: column; gap: 4px; }
    .pv-lb-row {
      display: flex; align-items: center; gap: 7px;
      padding: 5px 9px; background: rgba(255,255,255,0.04); border-radius: 5px;
      font-size: 10px;
    }
    .pv-lb-rank { font-weight: 900; color: var(--amber); width: 14px; flex-shrink: 0; }
    .pv-lb-name { flex: 1; color: rgba(255,255,255,0.9); }
    .pv-lb-score { font-weight: 800; color: var(--mint); font-variant-numeric: tabular-nums; }

    /* ── Scenarios ───────────────────────────────── */
    .scenarios { background: var(--bg-2); }
    .scenario-tabs {
      display: inline-flex; padding: 4px; gap: 4px;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; margin-bottom: 32px;
    }
    .scenario-tab {
      background: transparent; color: var(--muted-2); border: none;
      padding: 10px 22px; border-radius: 8px; cursor: pointer;
      font-size: 14px; font-weight: 700; transition: all 0.15s;
    }
    .scenario-tab.active {
      background: rgba(78,203,160,0.15); color: var(--mint);
    }
    .scenario-block { display: none; }
    .scenario-block.active { display: block; }
    .scenario-label {
      font-size: 15px; font-weight: 600; color: var(--muted);
      margin-bottom: 20px;
    }
    .timeline {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
      position: relative;
    }
    .timeline::before {
      content: '';
      position: absolute; top: 26px; left: 24px; right: 24px;
      height: 2px;
      background: linear-gradient(90deg, var(--mint), var(--blue), var(--amber), var(--pink));
      opacity: 0.25;
    }
    .step {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 14px; padding: 20px 16px; position: relative; z-index: 2;
      display: block;
    }
    .step-num {
      width: 28px; height: 28px; border-radius: 50%;
      background: var(--card); border: 2px solid var(--mint);
      color: var(--mint); font-size: 13px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 12px;
    }
    .step:nth-child(2) .step-num { border-color: var(--blue); color: var(--blue); }
    .step:nth-child(3) .step-num { border-color: var(--amber); color: var(--amber); }
    .step:nth-child(4) .step-num { border-color: var(--pink); color: var(--pink); }
    .step-time { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
    .step h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
    .step p { font-size: 12.5px; color: var(--muted-2); line-height: 1.55; }
    .step-chip {
      display: inline-block; margin-top: 10px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
      padding: 2px 7px; border-radius: 5px;
    }
    .step-chip.live  { background: rgba(232,84,122,0.18); color: var(--pink); }
    .step-chip.photo { background: rgba(78,203,160,0.18); color: var(--mint); }
    .step-chip.quiz  { background: rgba(245,166,35,0.18); color: var(--amber); }

    /* ── Quotes ──────────────────────────────────── */
    .quotes-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
      margin-top: 0;
    }
    .quote-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 16px; padding: 26px;
    }
    .quote-text {
      font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.88);
      margin-bottom: 16px;
    }
    .quote-text::before { content: '\00AB'; color: var(--mint); font-size: 20px; margin-right: 2px; vertical-align: -3px; }
    .quote-text::after  { content: '\00BB'; color: var(--mint); font-size: 20px; margin-left: 2px;  vertical-align: -3px; }
    .quote-person {
      display: flex; align-items: center; gap: 10px;
      padding-top: 16px; border-top: 1px solid var(--border);
    }
    .quote-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, var(--mint), var(--blue));
      display: flex; align-items: center; justify-content: center;
      color: #0B1320; font-weight: 800; font-size: 13px; flex-shrink: 0;
    }
    .quote-name { font-size: 13px; font-weight: 700; }
    .quote-role { font-size: 11px; color: var(--muted); }

    /* ── Quotes carousel ─────────────────────────── */
    .quotes-carousel { position: relative; }
    .quotes-track {
      display: flex; gap: 18px; overflow-x: auto;
      scroll-snap-type: x mandatory; scroll-behavior: smooth;
      padding: 4px 2px 14px; margin: 0 -2px;
    }
    .quotes-track::-webkit-scrollbar { height: 0; }
    .quotes-track .quote-card {
      flex: 0 0 340px; scroll-snap-align: start;
      display: flex; flex-direction: column;
    }
    .quotes-track .quote-text { flex: 1; }
    .quote-avatar svg { width: 22px; height: 22px; display: block; }
    .quotes-dots { display: flex; gap: 6px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
    .quotes-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; cursor: pointer; padding: 0; transition: all 0.2s; }
    .quotes-dot.active { background: var(--mint); width: 20px; border-radius: 4px; }
    @media (max-width: 680px) { .quotes-track .quote-card { flex: 0 0 84%; } }

    /* ── Pricing teaser ──────────────────────────── */
    .pricing-teaser {
      background: linear-gradient(135deg, rgba(78,203,160,0.07), rgba(91,141,239,0.04));
      border: 1px solid var(--border);
      border-radius: 24px; padding: 52px 48px; text-align: center;
    }
    .pricing-teaser h2 {
      font-family: 'Nunito', sans-serif;
      font-size: 30px; font-weight: 900; margin-bottom: 10px; letter-spacing: -0.02em;
    }
    .pricing-teaser > p {
      font-size: 15px; color: var(--muted-2);
      margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto;
    }
    .price-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
      max-width: 780px; margin: 0 auto 28px; text-align: left;
    }
    .price-card {
      background: rgba(255,255,255,0.03); border: 1px solid var(--border);
      border-radius: 14px; padding: 20px;
    }
    .price-card.popular {
      border-color: rgba(78,203,160,0.4);
      box-shadow: 0 8px 24px rgba(78,203,160,0.1);
    }
    .price-badge {
      display: inline-block; margin-bottom: 8px;
      font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 2px 6px; border-radius: 4px;
      background: var(--mint); color: #0B1320;
    }
    .price-name { font-size: 13px; font-weight: 700; color: var(--muted-2); margin-bottom: 6px; }
    .price-amount {
      font-size: 28px; font-weight: 900; margin-bottom: 4px;
      font-variant-numeric: tabular-nums;
    }
    .price-amount small { font-size: 14px; font-weight: 500; color: var(--muted); }
    .price-term { font-size: 11.5px; color: var(--muted); line-height: 1.5; }

    /* ── FAQ ─────────────────────────────────────── */
    .faq-section { background: var(--bg-2); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .faq-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 14px; padding: 22px 24px;
    }
    .faq-card h4 {
      font-size: 15px; font-weight: 700; margin-bottom: 10px;
      display: flex; align-items: flex-start; gap: 10px;
    }
    .faq-q-icon {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      background: rgba(78,203,160,0.15); color: var(--mint);
      font-size: 12px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
    }
    .faq-card p { font-size: 13.5px; line-height: 1.65; color: var(--muted-2); padding-left: 32px; }

    /* ── Final CTA ───────────────────────────────── */
    .final-cta {
      padding: 100px 0; text-align: center;
      background:
        radial-gradient(ellipse at center top, rgba(78,203,160,0.14), transparent 60%),
        var(--bg);
    }
    .final-cta h2 {
      font-family: 'Nunito', sans-serif;
      font-size: 42px; font-weight: 900; line-height: 1.08; letter-spacing: -0.02em;
      margin-bottom: 28px; max-width: 680px; margin-left: auto; margin-right: auto;
    }
    .final-cta > p { font-size: 16px; color: var(--muted-2); margin-bottom: 44px; }

    /* ── Footer ──────────────────────────────────── */
    footer {
      background: var(--bg-2); padding: 40px 0 52px;
      border-top: 1px solid var(--border);
    }
    .footer-row {
      display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
    }
    .footer-logo img { height: 24px; width: auto; }
    .footer-links {
      display: flex; gap: 20px; font-size: 13px; color: var(--muted);
    }
    .footer-links a:hover { color: var(--mint); transition: color 0.15s; }
    .footer-copy { margin-left: auto; font-size: 12px; color: var(--muted); }

    /* ── Hero split layout ───────────────────────── */
    .hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
    .hero-col-visual { display: flex; align-items: center; justify-content: center; }
    .hero-screen { width: 100%; max-width: 400px; background: #060c16; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
    .hs-bar { padding: 11px 15px; background: rgba(0,0,0,0.45); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .hs-bar-title { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.82); }
    .hs-live { display: flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700; color: var(--mint); }
    .hs-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); animation: heroPulse 1.5s ease-in-out infinite; }
    @keyframes heroPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }
    .hs-wishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; padding: 12px; }
    .hs-wish { border-radius: 8px; padding: 10px 9px; font-size: 10px; color: #fff; font-weight: 600; line-height: 1.4; min-height: 56px; display: flex; align-items: flex-start; }
    .hs-wish.hw1 { background: linear-gradient(135deg, #E8547A, #a8304e); }
    .hs-wish.hw2 { background: linear-gradient(135deg, #5B8DEF, #3358a8); }
    .hs-wish.hw3 { background: linear-gradient(135deg, #4ECBA0, #277a5c); box-shadow: 0 0 0 2px var(--mint); animation: heroWishPulse 2.2s ease-in-out infinite; }
    .hs-wish.hw4 { background: linear-gradient(135deg, #F5A623, #c47f0e); }
    .hs-wish.hw5 { background: linear-gradient(135deg, #8B5CF6, #6237c4); }
    .hs-wish.hw6 { background: linear-gradient(135deg, #4ECBA0, #1e6040); }
    @keyframes heroWishPulse { 0%,100% { box-shadow: 0 0 0 2px var(--mint); } 50% { box-shadow: 0 0 0 3px rgba(78,203,160,0.55); } }
    .hs-footer { padding: 9px 14px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: rgba(255,255,255,0.38); }
    .hs-qr { width: 26px; height: 26px; border-radius: 4px; border: 1.5px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 900; color: rgba(255,255,255,0.45); flex-shrink: 0; }
    .hs-count { margin-left: auto; font-size: 10px; font-weight: 700; color: var(--mint); }

    /* ── Mobile ──────────────────────────────────── */
    @media (max-width: 880px) {
      .hero h1 { font-size: 36px; }
      .hero-desc { font-size: 16px; }
      .hero-split { grid-template-columns: 1fr; }
      .hero-col-visual { display: none; }
      .section-h { font-size: 26px; }
      .pains-grid { grid-template-columns: 1fr; }
      .feature-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 60px; }
      .feature-row.reverse .feature-content,
      .feature-row.reverse .feature-preview { order: initial; }
      .feature-content h2 { font-size: 24px; }
      .timeline { grid-template-columns: 1fr 1fr; }
      .timeline::before { display: none; }
      .quotes-grid { grid-template-columns: 1fr; }
      .price-grid { grid-template-columns: 1fr; }
      .pricing-teaser { padding: 32px 20px; }
      .pricing-teaser h2 { font-size: 24px; }
      .faq-grid { grid-template-columns: 1fr; }
      .final-cta h2 { font-size: 30px; }
      .nav-crumb { display: none; }
      .footer-row { flex-direction: column; align-items: flex-start; }
      .footer-copy { margin-left: 0; }
    }
    /* ── Hero: анимация активаций (поздравления → фото-стена → викторина) ── */
    .hm-anim { position: relative; }
    .hm-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
    .hm-head-title { font-size:13px; font-weight:800; color:#fff; }
    .hm-hlive { display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:700; color:var(--mint); }
    .hm-stage { position:relative; height:300px; }
    .hm-panel { position:absolute; inset:0; opacity:0; transform:translateY(8px); transition:opacity .32s ease, transform .32s ease; pointer-events:none; }
    .hm-panel.is-active { opacity:1; transform:none; }
    .hm-cap { text-align:center; margin-top:14px; color:var(--muted); font-size:11.5px; line-height:1.4; }
    .hm-photo { display:grid; grid-template-columns:repeat(4,1fr); gap:7px; }
    .hm-cell { aspect-ratio:1; border-radius:9px; position:relative; }
    .hm-cell-new { position:absolute; left:6px; bottom:5px; font-size:8px; font-weight:800; letter-spacing:.04em; color:#fff; }
    .hm-qq { font-size:14.5px; font-weight:800; color:#fff; line-height:1.3; margin-bottom:14px; }
    .hm-o { display:flex; align-items:center; gap:10px; border:1px solid var(--border); border-radius:10px; padding:9px 12px; margin-bottom:8px; font-size:13px; color:rgba(255,255,255,.86); background:rgba(255,255,255,.02); }
    .hm-o-correct { border-color:rgba(78,203,160,.45); background:rgba(78,203,160,.08); color:#fff; }
    .hm-ok { flex:none; width:22px; height:22px; border-radius:6px; background:rgba(91,141,239,.16); color:var(--blue); font-size:11px; font-weight:800; display:flex; align-items:center; justify-content:center; }
    .hm-ok-correct { background:rgba(78,203,160,.2); color:var(--mint); }
    .hm-check { margin-left:auto; color:var(--mint); font-weight:800; }
    .hm-lb { display:flex; gap:16px; margin-top:13px; padding-top:12px; border-top:1px solid var(--border); font-size:11.5px; color:var(--muted); }
    .hm-lb b { color:#fff; }
    .hm-steps { display:flex; gap:4px; margin-top:16px; padding-top:14px; border-top:1px solid var(--border); }
    .hm-steps span { flex:1; text-align:center; font-size:10px; font-weight:700; letter-spacing:.02em; color:rgba(255,255,255,.32); transition:color .35s; position:relative; }
    .hm-steps span.on { color:var(--mint); }
    .hm-steps span::before { content:''; position:absolute; left:12%; right:12%; top:-14px; height:2px; border-radius:2px; background:rgba(255,255,255,.1); transition:background .35s; }
    .hm-steps span.on::before { background:var(--mint); }
    @media (prefers-reduced-motion: reduce) { .hm-panel { transition:none; } }

/* Мок экрана зала в герое сегментных страниц (speakers/organizers/teams).
   Свои классы sm-*: .hs-bar в этом файле — заголовочная плашка, не полоса результата. */
.sm-q { font-size: 14.5px; font-weight: 800; color: #fff; line-height: 1.3; margin: 14px 0 14px; }
.sm-rows { display: grid; gap: 11px; }
.sm-row-top { display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.78); margin-bottom: 5px; }
.sm-row:first-child .sm-row-top { color: #fff; font-weight: 700; }
.sm-track { height: 9px; border-radius: 6px; background: rgba(255,255,255,0.06); overflow: hidden; }
.sm-track i { display: block; height: 100%; border-radius: 6px; background: rgba(91,141,239,0.75); }
.sm-row:first-child .sm-track i { background: linear-gradient(90deg, var(--mint), var(--blue)); }
.sm-foot { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 10px; }
.sm-count { margin-left: auto; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.45); }
