@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&display=swap');

:root {
  --background: #fef8f4;
  --foreground: #2a1810;
  --primary: #c44536;
  --secondary: #f4e4dc;
  --muted: #8b6f5c;
  --accent: #ffd4c8;
  --gradient-start: #ff9a76;
  --gradient-mid: #ff6f91;
  --gradient-end: #c44536;
  --radius: 1rem;
  --shadow: 0 10px 40px rgba(196, 69, 54, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #fef8f4 0%, #fff5ed 50%, #ffe8dc 100%);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}

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

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 69, 54, 0.1);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: all 0.2s;
}

.nav-link:hover {
  color: var(--foreground);
  background: var(--secondary);
}

.nav-link.active {
  background: var(--primary);
  color: white;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--foreground);
}

main {
  padding-top: 5rem;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 212, 200, 0.5), rgba(244, 228, 220, 0.5));
  font-size: 0.875rem;
  color: rgba(42, 24, 16, 0.8);
  margin-bottom: 1.5rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 2rem;
}

.text-muted {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

/* Hero */
.hero {
  text-align: center;
  padding: 3rem 0 4rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  color: white;
  box-shadow: 0 4px 20px rgba(196, 69, 54, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196, 69, 54, 0.35);
}

.btn-outline {
  background: white;
  color: var(--primary);
  border: 2px solid rgba(196, 69, 54, 0.2);
}

.btn-outline:hover {
  box-shadow: var(--shadow);
}

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(196, 69, 54, 0.15);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-icon.rose { background: linear-gradient(135deg, #fb7185, #f43f5e); }
.card-icon.orange { background: linear-gradient(135deg, #fb923c, #ef4444); }
.card-icon.amber { background: linear-gradient(135deg, #fbbf24, #f97316); }
.card-icon.blue { background: linear-gradient(135deg, #60a5fa, #6366f1); }
.card-icon.pink { background: linear-gradient(135deg, #f472b6, #fb7185); }
.card-icon.yellow { background: linear-gradient(135deg, #facc15, #f59e0b); }

/* Audio cards */
.song-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.song-cover {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.song-cover.blue { background: linear-gradient(135deg, #60a5fa, #6366f1); }
.song-cover.pink { background: linear-gradient(135deg, #f472b6, #fb7185); }
.song-cover.yellow { background: linear-gradient(135deg, #facc15, #f59e0b); }
.song-cover.orange { background: linear-gradient(135deg, #fb923c, #ef4444); }
.song-cover.rose { background: linear-gradient(135deg, #fb7185, #f43f5e); }
.song-cover.amber { background: linear-gradient(135deg, #fbbf24, #f97316); }
.song-cover.purple { background: linear-gradient(135deg, #c084fc, #ec4899); }
.song-cover.cyan { background: linear-gradient(135deg, #22d3ee, #3b82f6); }
.song-cover.indigo { background: linear-gradient(135deg, #818cf8, #a855f7); }

.play-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.08);
}

.song-body {
  padding: 1.25rem 1.5rem;
}

.song-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.song-body p {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Contact box */
.contact-box {
  background: linear-gradient(135deg, #faf5ff, #fdf2f8);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.contact-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.price-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.popular {
  outline: 2px solid var(--primary);
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
}

.price-amount span {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 400;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

/* Legal / prose */
.prose {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.prose section {
  margin-bottom: 2rem;
}

.prose h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.prose p, .prose li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.prose ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.info-box {
  background: rgba(255, 212, 200, 0.15);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

/* Payment cards */
.info-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-card-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.copy-btn {
  margin-left: auto;
  padding: 0.5rem 0.75rem;
  border: none;
  background: rgba(255, 212, 200, 0.3);
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--primary);
  flex-shrink: 0;
}

.copy-btn.copied {
  background: #dcfce7;
  color: #16a34a;
}

/* Examples good/bad */
.example-good {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 2px solid #bbf7d0;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.example-bad {
  background: linear-gradient(135deg, #fef2f2, #fff1f2);
  border: 2px solid #fecaca;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.step-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  display: flex;
  gap: 1.25rem;
}

.step-num {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--gradient-mid));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
.footer {
  margin-top: 5rem;
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.page-section {
  padding: 2rem 0 4rem;
}

/* Social links */
.social-section {
  margin: 4rem 0 2rem;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.social-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.social-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.social-section-header p {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
}

.social-section-hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.social-recommended {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(34, 158, 217, 0.15);
  color: #1d7eb5;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

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

.social-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(196, 69, 54, 0.1);
  background: var(--background);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-align: left;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 69, 54, 0.12);
  border-color: rgba(196, 69, 54, 0.25);
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.social-icon.telegram { background: linear-gradient(135deg, #2aabee, #229ed9); }
.social-icon.vk { background: linear-gradient(135deg, #4a76a8, #5181b8); }
.social-icon.ok { background: linear-gradient(135deg, #f58220, #ee8208); }
.social-icon.youtube { background: linear-gradient(135deg, #ff0000, #cc0000); }
.social-icon.max { background: linear-gradient(135deg, #5c6bc0, #7e57c2); }

.social-card-body h3 {
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--foreground);
}

.social-card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.social-card-arrow {
  margin-left: auto;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
  align-self: center;
}

.social-card:hover .social-card-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.social-compact {
  margin: 1.5rem 0;
}

.social-compact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  text-align: center;
}

.social-compact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(196, 69, 54, 0.15);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 69, 54, 0.12);
}

.social-pill-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.social-pill-dot.telegram { background: #229ed9; }
.social-pill-dot.vk { background: #5181b8; }
.social-pill-dot.ok { background: #ee8208; }
.social-pill-dot.youtube { background: #ff0000; }
.social-pill-dot.max { background: #7e57c2; }

.footer-social {
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 1rem;
    border-bottom: 1px solid rgba(196, 69, 54, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .price-card.popular {
    transform: none;
  }
}
