/* ════════════════════════════════
   SONGIRA — style.css
   Palette: deep purple #1a0533 | violet #7c3aed | lavender #a78bfa | pink #ec4899
   Font: Inter + Playfair Display
════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0d0118;
  color: #e8e0f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font: inherit; }

/* ── CSS Variables ── */
:root {
  --c-bg:       #0d0118;
  --c-bg-card:  #170a2e;
  --c-bg-dark:  #120a22;
  --c-purple:   #7c3aed;
  --c-purple-h: #6d28d9;
  --c-lavender: #a78bfa;
  --c-pink:     #ec4899;
  --c-pink-h:   #db2777;
  --c-text:     #e8e0f0;
  --c-muted:    #9d8ab3;
  --c-border:   rgba(167,139,250,0.15);
  --r-card:     16px;
  --r-btn:      50px;
  --shadow:     0 8px 32px rgba(124,58,237,0.25);
  --trans:      .22s cubic-bezier(.4,0,.2,1);
}

/* ── Container ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.section-dark { background: var(--c-bg-dark); }

/* ── Typography ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}
.section-sub { color: var(--c-muted); font-size: 1.1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--r-btn);
  font-weight: 600;
  transition: all var(--trans);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-purple), var(--c-pink));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--c-purple-h), var(--c-pink-h));
  box-shadow: 0 6px 28px rgba(124,58,237,.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-lavender);
  border: 1.5px solid var(--c-border);
}
.btn-ghost:hover { border-color: var(--c-lavender); background: rgba(167,139,250,.08); }
.btn-white {
  background: #fff;
  color: var(--c-purple);
  font-weight: 700;
}
.btn-white:hover { background: #f3f0ff; transform: translateY(-2px); }
.btn-sm  { padding: 10px 22px; font-size: .875rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.15rem; }
.btn-full { width: 100%; justify-content: center; }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,1,24,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--trans);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: #fff;
}
.logo-icon { font-size: 1.6rem; color: var(--c-lavender); }
.nav-links {
  display: flex; align-items: center; gap: 28px; margin-left: 16px;
}
.nav-links a { color: var(--c-muted); font-size: .95rem; font-weight: 500; transition: color var(--trans); }
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: auto; }
.burger { display: none; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--c-lavender); border-radius: 2px; transition: var(--trans); }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex; gap: 4px; align-items: center;
  margin-left: 8px;
}
.lang-btn {
  background: none; border: 1px solid transparent;
  border-radius: 6px; padding: 4px 7px;
  font-size: .85rem; cursor: pointer;
  color: var(--text-muted, #9b8ab5);
  transition: all .2s; line-height: 1;
}
.lang-btn:hover { border-color: rgba(167,139,250,.4); color: #e8e0f0; }
.lang-btn.active {
  border-color: rgba(167,139,250,.6);
  background: rgba(167,139,250,.12);
  color: #e8e0f0;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--c-purple), transparent 70%);
  top: -100px; left: -150px;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--c-pink), transparent 70%);
  bottom: -100px; right: -100px;
}
.hero-waves { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-waves svg { width: 100%; }

.hero-inner {
  position: relative; z-index: 1;
  padding: 80px 0 100px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(167,139,250,.12);
  border: 1px solid rgba(167,139,250,.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .85rem; color: var(--c-lavender);
  margin-bottom: 32px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800; line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-lavender), var(--c-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--c-muted); max-width: 560px; margin-bottom: 40px; line-height: 1.7;
}
.hero-preview {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  max-width: 480px;
}

.hero-preview-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c4b5fd;
  font-size: 14px;
}
.hero-subtitle strong { color: var(--c-lavender); }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.hero-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
  color: var(--c-muted); font-size: .9rem;
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-icon { font-size: 1rem; }
.trust-divider { color: rgba(255,255,255,.2); }

/* ════════════════════════════════
   OCCASIONS
════════════════════════════════ */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.occasion-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--trans), border-color var(--trans);
}
.occasion-card:hover { transform: translateY(-4px); border-color: var(--c-lavender); }
.occasion-card--featured {
  border-color: var(--c-purple);
  box-shadow: 0 0 0 1px var(--c-purple), var(--shadow);
}
.occasion-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--c-purple), var(--c-pink));
  color: #fff; font-size: .75rem; font-weight: 600;
  padding: 4px 14px; border-radius: 50px;
}
.occasion-emoji { font-size: 2.5rem; margin-bottom: 16px; }
.occasion-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.occasion-card p { color: var(--c-muted); font-size: .95rem; line-height: 1.5; }

/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.steps {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.step {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 36px 28px;
  text-align: center;
  flex: 1; min-width: 220px; max-width: 300px;
}
.step-num {
  font-size: 3rem; font-weight: 900;
  color: rgba(167,139,250,.15);
  line-height: 1; margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { color: var(--c-muted); font-size: .95rem; }
.step-arrow { font-size: 1.8rem; color: var(--c-lavender); opacity: .6; }
.how-cta { text-align: center; }

/* ════════════════════════════════
   EXAMPLES
════════════════════════════════ */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.example-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 24px;
  display: flex; align-items: center; gap: 16px;
  transition: border-color var(--trans);
}
.example-card:hover { border-color: var(--c-lavender); }
.example-art {
  width: 60px; height: 60px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
}
.example-info { flex: 1; }
.example-info h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.example-info p { font-size: .85rem; color: var(--c-muted); }
.play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(124,58,237,.2); color: var(--c-lavender);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--trans);
}
.play-btn:hover { background: var(--c-purple); color: #fff; transform: scale(1.1); }

.examples-grid-audio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.example-card-audio {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.example-card-audio audio {
  width: 100%;
  margin-top: 14px;
}
.example-art-cover {
  border-radius: 16px;
  overflow: hidden;
}

.example-art-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════
   REVIEWS
════════════════════════════════ */
.stars-row {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-bottom: 12px; color: #facc15; font-size: 1.2rem;
}
.stars-row strong { color: #fff; font-size: 1.1rem; }
.reviews-count { color: var(--c-muted); font-size: .9rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 28px;
  transition: border-color var(--trans);
}
.review-card--featured {
  border-color: var(--c-purple);
  box-shadow: var(--shadow);
}
.review-stars { color: #facc15; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p { color: #d1c4e9; line-height: 1.7; font-size: .95rem; margin-bottom: 16px; font-style: italic; }
.review-card footer { color: var(--c-muted); font-size: .875rem; }
.review-card footer strong { color: #fff; }

/* ════════════════════════════════
   ORDER FORM
════════════════════════════════ */
.order-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px; align-items: start;
}
.order-left { position: sticky; top: 100px; }
.order-subtitle { color: var(--c-muted); margin: 12px 0 28px; line-height: 1.6; }
.order-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.order-benefits li { color: #c4b5fd; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.order-price {
  display: flex; align-items: baseline; gap: 12px;
  background: rgba(124,58,237,.1);
  border: 1px solid var(--c-border);
  border-radius: 12px; padding: 16px 20px;
}
.price-label { color: var(--c-muted); font-size: .9rem; }
.price-value {
  font-size: 2.4rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--c-lavender), var(--c-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-note { color: var(--c-muted); font-size: .85rem; }

.order-form {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: .9rem; font-weight: 600; color: #c4b5fd; }
.required { color: var(--c-pink); }
input[type="text"],
input[type="email"],
select,
textarea {
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--c-border);
  border-radius: 10px; padding: 12px 16px;
  color: #fff; font-size: .95rem;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--c-lavender);
  box-shadow: 0 0 0 3px rgba(167,139,250,.15);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.25); }
select option { background: #1a0533; color: #fff; }
textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: .8rem; color: var(--c-muted); }

.mood-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.mood-chip {
  cursor: pointer;
}
.mood-chip input { display: none; }
.mood-chip span {
  display: block;
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--c-border);
  border-radius: 8px; padding: 10px 8px;
  text-align: center; font-size: .85rem; color: var(--c-muted);
  transition: all var(--trans);
}
.mood-chip input:checked + span {
  background: rgba(124,58,237,.2);
  border-color: var(--c-purple); color: #fff;
}
.mood-chip:hover span { border-color: var(--c-lavender); color: #fff; }

.voice-toggle { display: flex; gap: 12px; }
.voice-opt { cursor: pointer; }
.voice-opt input { display: none; }
.voice-opt span {
  display: block;
  background: rgba(255,255,255,.04);
  border: 1.5px solid var(--c-border);
  border-radius: 8px; padding: 12px 24px;
  font-size: .95rem; font-weight: 500; color: var(--c-muted);
  transition: all var(--trans);
}
.voice-opt input:checked + span {
  background: rgba(124,58,237,.2);
  border-color: var(--c-purple); color: #fff;
}
.voice-opt:hover span { border-color: var(--c-lavender); color: #fff; }

.form-legal { font-size: .8rem; color: var(--c-muted); text-align: center; margin-top: -4px; }
.form-legal a { color: var(--c-lavender); text-decoration: underline; }

.order-success { text-align: center; padding: 48px 24px; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.order-success h3 { font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
.order-success p { color: var(--c-muted); }

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-container { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item[open] { border-color: var(--c-purple); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600; color: #fff; font-size: 1rem;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  transition: color var(--trans);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--c-lavender);
  transition: transform var(--trans);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; color: var(--c-muted); line-height: 1.7; font-size: .95rem; }

/* ════════════════════════════════
   FINAL CTA
════════════════════════════════ */
.final-cta-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(236,72,153,.1));
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-orb {
  position: absolute; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,.25), transparent 70%);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.final-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff; margin-bottom: 16px;
}
.final-cta-inner p { color: var(--c-muted); max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }
.cta-note { margin-top: 20px; color: var(--c-muted); font-size: .9rem; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: #080010;
  border-top: 1px solid var(--c-border);
  padding: 48px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand p { color: var(--c-muted); font-size: .875rem; margin-top: 8px; line-height: 1.5; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--c-muted); font-size: .875rem; transition: color var(--trans); }
.footer-links a:hover { color: var(--c-lavender); }
.footer-copy { color: rgba(255,255,255,.25); font-size: .8rem; width: 100%; text-align: center; margin-top: 8px; }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 900px) {
  .order-wrapper { grid-template-columns: 1fr; }
  .order-left { position: static; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 768px) {
  .pricing-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 8px 20px 24px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    scrollbar-width: none;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  .pricing-grid .price-card {
    flex: 0 0 85vw !important;
    max-width: 340px;
    min-width: unset;
    scroll-snap-align: center;
    width: auto !important;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #0d0118; border-bottom: 1px solid var(--c-border);
    padding: 20px 24px; gap: 16px;
  }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .mood-grid { grid-template-columns: 1fr 1fr; }
  .order-form { padding: 28px 20px; }
  .section-pad { padding: 64px 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
/* ═══════════════ EXAMPLES — 6 карточек ═══════════════ */

.examples-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

/* Карточка */
.ex6-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(167,139,250,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ex6-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(12,10,32,.6);
}

/* Обложка */
.ex6-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.ex6-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.ex6-card:hover .ex6-cover img {
  transform: scale(1.05);
}

/* Overlay + play */
.ex6-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,1,24,.38);
  transition: background .3s;
}
.ex6-card:hover .ex6-overlay {
  background: rgba(13,1,24,.55);
}

.ex6-play {
  width: 56px;
  height: 56px;
  padding: 0;
  cursor: pointer;
  border: none;
  background: none;
  transition: transform .2s;
}
.ex6-play svg {
  width: 56px;
  height: 56px;
}
.ex6-play:hover {
  transform: scale(1.12);
}

/* Состояние playing */
.ex6-card.playing .ex6-overlay {
  background: rgba(124,58,237,.25);
}

/* Волны визуализатора */
.ex6-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 0 12px 8px;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.ex6-card.playing .ex6-wave {
  opacity: 1;
}
.ex6-wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: rgba(167,139,250,.7);
  height: 6px;
}
@keyframes ex6-wave {
  0%,100% { height: 6px; }
  50%     { height: 22px; }
}
.ex6-card.playing .ex6-wave span:nth-child(1)  { animation: ex6-wave 1.1s ease-in-out infinite 0.0s; }
.ex6-card.playing .ex6-wave span:nth-child(2)  { animation: ex6-wave 1.1s ease-in-out infinite 0.1s; }
.ex6-card.playing .ex6-wave span:nth-child(3)  { animation: ex6-wave 1.1s ease-in-out infinite 0.2s; }
.ex6-card.playing .ex6-wave span:nth-child(4)  { animation: ex6-wave 1.1s ease-in-out infinite 0.05s; }
.ex6-card.playing .ex6-wave span:nth-child(5)  { animation: ex6-wave 1.1s ease-in-out infinite 0.15s; }
.ex6-card.playing .ex6-wave span:nth-child(6)  { animation: ex6-wave 1.1s ease-in-out infinite 0.25s; }
.ex6-card.playing .ex6-wave span:nth-child(7)  { animation: ex6-wave 1.1s ease-in-out infinite 0.08s; }
.ex6-card.playing .ex6-wave span:nth-child(8)  { animation: ex6-wave 1.1s ease-in-out infinite 0.18s; }
.ex6-card.playing .ex6-wave span:nth-child(9)  { animation: ex6-wave 1.1s ease-in-out infinite 0.12s; }
.ex6-card.playing .ex6-wave span:nth-child(10) { animation: ex6-wave 1.1s ease-in-out infinite 0.22s; }

/* Подписи под обложкой */
.ex6-info {
  padding: 14px 16px 16px;
}
.ex6-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin: 0 0 8px;
  line-height: 1.3;
}
.ex6-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}
.ex6-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  background: rgba(167,139,250,.1);
  border: 1px solid rgba(167,139,250,.18);
  border-radius: 999px;
  padding: 2px 8px;
}

/* Прогресс-бар */
.ex6-audio-bar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ex6-time,
.ex6-dur {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,.4);
  min-width: 28px;
}
.ex6-progress-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 99px;
  overflow: hidden;
  cursor: pointer;
}
.ex6-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,#7c3aed,#a78bfa);
  border-radius: 99px;
  transition: width .25s linear;
}

.examples-cta {
  text-align: center;
  margin-top: 36px;
}

/* Адаптив */
@media (max-width: 1024px) {
  .examples-grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .examples-grid-6 {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}
.order-closing {
  margin-top: 32px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(236,72,153,.08));
  border: 1px solid rgba(167,139,250,.2);
  border-radius: 16px;
}

.order-closing-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 100%;
}

.order-closing-text strong {
  color: #fff;
}

.order-closing-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(167,139,250,.9);
  font-weight: 600;
}

.order-closing-meta .dot {
  color: rgba(167,139,250,.4);
}