/* ==========================================================================
   1. BASE & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #FAFAFA;
  color: #222222;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, iframe {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   2. LAYOUT & CONTAINERS
   ========================================================================== */
header, main, footer, .faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 60px 0;
  border-bottom: none;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
  color: #15034D;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 24px;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   4. HEADER & NAVIGATION
   ========================================================================== */
header {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #15034D;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

nav a {
  color: #666666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #222222;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #E5E5E5;
}

.lang-switch a {
  color: #666666;
  text-decoration: none;
}

.lang-switch a.active {
  font-weight: 600;
  color: #222222;
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #15034D;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.05rem;
  color: #666666;
  margin-bottom: 32px;
}

.hero-photo-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #EFEFEF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E5E5;
}

.hero-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   6. КНОПКИ (ПРЯМЫЕ ЗНАЧЕНИЯ ЦВЕТОВ БЕЗ VAR)
   ========================================================================== */
.btn {
  display: inline-block;
  background-color: #800000;
  color: #FFFFFF;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btngreen {
  display: inline-block;
  background-color: #20815D;
  color: #FFFFFF;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btnblue {
  display: inline-block;
  background-color: #408DD2;
  color: #FFFFFF;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btnyellow {
  display: inline-block;
  background-color: #BFAF30;
  color: #FFFFFF;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #24A1DE;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #FFFFFF;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.btn:hover, 
.btngreen:hover, 
.btnblue:hover, 
.btnyellow:hover, 
.btn-telegram:hover, 
.btn-instagram:hover, 
.btn-whatsapp:hover {
  opacity: 0.9;
}

/* ==========================================================================
   7. MESSENGER CTA & SERVICES
   ========================================================================== */
.messenger-cta {
  background-color: #f7f6f4;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 32px auto;
  max-width: 600px;
}

.messenger-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.messenger-subtitle {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 16px;
}

.messenger-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-text {
  color: #666666;
  font-size: 1rem;
  margin-bottom: 16px;
}

.service-target {
  background-color: #f7f6f4;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 12px 0 16px 0;
  font-size: 0.88rem;
  line-height: 1.4;
}

.service-target strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #666666;
  margin-bottom: 6px;
}

.service-target ul {
  margin: 0;
  padding-left: 18px;
  color: #222222;
}

.service-target li {
  margin-bottom: 4px;
}

.service-target li:last-child {
  margin-bottom: 0;
}

/* Services Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  border: 1px solid #E5E5E5;
  padding: 24px;
  border-radius: 6px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #15034D;
}

.service-desc {
  color: #666666;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-link {
  display: inline-block;
  color: #222222;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 2px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.service-link:hover {
  border-color: #222222;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   8. CONTENT BLOCKS (Story, FAQ, Lists)
   ========================================================================== */
.story-card {
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-left: 4px solid #15034D;
  border-radius: 6px;
  padding: 32px;
  margin: 28px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.story-card p {
  font-size: 1.05rem;
}

.custom-list {
  list-style: none;
  margin: 16px 0 24px;
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.custom-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #15034D;
  font-size: 1.4rem;
  line-height: 1;
}

.step-list {
  list-style: none;
  counter-reset: step-counter;
  margin: 20px 0;
  padding: 0;
}

.step-list li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 44px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  background: #EAE6F8;
  color: #15034D;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.highlight-box {
  background: #F4F3F8;
  padding: 20px 24px;
  border-radius: 6px;
  margin: 28px 0;
  font-size: 0.98rem;
  color: #333333;
}

.highlight-box p {
  margin-bottom: 8px;
  font-size: 0.98rem;
}

/* FAQ Section */
.faq-section {
  margin: 40px auto;
  padding: 0 16px;
}

.faq-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #f7f6f4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  padding: 16px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: #666666;
  margin-left: 12px;
  transition: transform 0.2s ease;
}

.faq-item details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 16px 16px 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444444;
}

/* ==========================================================================
   9. MEDIA & FOOTER
   ========================================================================== */
.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000000;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid #E5E5E5;
}

.video-container video,
.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.payment-widget-container {
  margin-top: 40px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  text-align: center;
}

.social-list {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-list a {
  color: #222222;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid #222222;
  padding-bottom: 2px;
}

.legal-info {
  background: #F4F4F4;
  padding: 24px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #666666;
  margin-top: 24px;
}

footer {
  padding: 48px 24px 60px;
  font-size: 0.85rem;
  color: #666666;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-links a {
  color: #666666;
  text-decoration: underline;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #E5E5E5;
}

.tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666666;
  margin-bottom: 12px;
}

/* Стили для хлебных крошек */
.breadcrumb {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 24px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li+li::before {
  content: "→";
  margin-right: 8px;
  color: #E5E5E5;
}

.breadcrumb a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #222222;
}

.breadcrumb span[aria-current="page"] {
  color: #222222;
  font-weight: 500;
}

.payment-icons {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #222222;
}

@media (max-width: 640px) {
  header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switch {
    margin-left: 0;
  }

  section {
    padding: 40px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-photo-wrapper {
    max-width: 240px;
    margin: 0 auto;
  }

  .story-card {
    padding: 20px;
  }

  .btn, .btngreen, .btnblue, .btnyellow {
    width: 100%;
  }
}


/* --- Сброс базовых стилей и переменные --- */
:root {
  --primary: #2d3748;
  --accent: #4a5568;
  --brand-color: #3182ce;
  --brand-hover: #2b6cb0;
  --bg-main: #f7fafc;
  --bg-card: #ffffff;
  --bg-accent: #edf2f7;
  --text-main: #1a202c;
  --text-muted: #718096;
  --border-color: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 17px;
  padding-bottom: 40px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Навигация --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
}

.back-link {
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--brand-hover);
}

.tag {
  background: var(--bg-accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Typo & Titles --- */
h1, h2, h3 {
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1.hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 24px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

/* --- Hero --- */
.hero {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
}

.author-info {
  font-size: 15px;
  color: var(--text-muted);
}

/* --- Цитаты и акцентные блоки --- */
.quote-box {
  background: #fffaf0;
  border-left: 4px solid #dd6b20;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-title {
  font-weight: 700;
  color: #c05621;
  margin-bottom: 4px;
}

.card-light {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 32px 0;
}

/* --- Списки --- */
.scenarios-list, .plan-list, .rules-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.scenarios-list li, .rules-section li {
  margin-bottom: 8px;
}

.plan-list li {
  margin-bottom: 12px;
  font-weight: 500;
}

/* --- Карточка записи --- */
.booking-card {
  background: var(--bg-card);
  border: 2px solid var(--brand-color);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(49, 130, 206, 0.12);
  margin: 36px 0;
}

.booking-header h2 {
  margin-top: 0;
  margin-bottom: 4px;
}

.booking-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.booking-details {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.detail-value {
  font-weight: 600;
}

.detail-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-color);
}

.detail-price small {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Кнопка --- */
.btn {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--brand-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--brand-hover);
  transform: translateY(-1px);
}

.contacts-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.contacts-note a {
  color: var(--brand-color);
}

/* --- Доп. блок и правила --- */
.note-box {
  background: var(--bg-accent);
  padding: 20px;
  border-radius: var(--radius);
  font-style: italic;
  margin-bottom: 32px;
}

.rules-section {
  font-size: 14px;
  color: var(--text-muted);
  border-top: none;
  padding-top: 24px;
}

.offer-link {
  color: var(--text-muted);
  text-decoration: underline;
}

.offer-link:hover {
  color: var(--text-main);
}

/* --- Подвал --- */
.footer {
  border-top: none;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Адаптивность для мобильных устройств --- */
@media (max-width: 580px) {
  h1.hero-title {
    font-size: 26px;
  }
  
  .booking-card {
    padding: 20px;
  }
  
  .booking-details {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-meta {
    flex-direction: column;
  }
}

/* --- Сброс базовых стилей и переменные --- */
:root {
  --primary: #2d3748;
  --accent: #4a5568;
  --brand-color: #3182ce;
  --brand-hover: #2b6cb0;
  --bg-main: #f7fafc;
  --bg-card: #ffffff;
  --bg-accent: #edf2f7;
  --text-main: #1a202c;
  --text-muted: #718096;
  --border-color: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth; /* Плавный переход по кнопке "Записаться" */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 17px;
  padding-bottom: 40px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Навигация --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
}

.back-link {
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--brand-hover);
}

.tag {
  background: var(--bg-accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Typo & Titles --- */
h1, h2, h3 {
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1.hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 24px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

/* --- Hero & Автор --- */
.hero {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 28px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.author-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-accent); /* Плейсхолдер до загрузки */
}

.author-info {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.3;
}

.author-info strong {
  color: var(--primary);
  font-size: 16px;
}

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

.hero-action {
  margin-top: 16px;
}

/* --- Цитаты и акцентные блоки --- */
.quote-box {
  background: #fffaf0;
  border-left: 4px solid #dd6b20;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-title {
  font-weight: 700;
  color: #c05621;
  margin-bottom: 4px;
}

.card-light {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 32px 0;
}

/* --- Списки --- */
.scenarios-list, .plan-list, .rules-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.scenarios-list li, .rules-section li {
  margin-bottom: 8px;
}

.plan-list li {
  margin-bottom: 12px;
  font-weight: 500;
}

/* --- Карточка записи --- */
.booking-card {
  background: var(--bg-card);
  border: 2px solid var(--brand-color);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(49, 130, 206, 0.12);
  margin: 36px 0;
}

.booking-header h2 {
  margin-top: 0;
  margin-bottom: 4px;
}

.booking-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.booking-details {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.detail-value {
  font-weight: 600;
}

.detail-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-color);
}

.detail-price small {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Кнопка --- */
.btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 280px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--brand-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--brand-hover);
  transform: translateY(-1px);
}

.contacts-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.contacts-note a {
  color: var(--brand-color);
}

/* --- Доп. блок и правила --- */
.note-box {
  background: var(--bg-accent);
  padding: 20px;
  border-radius: var(--radius);
  font-style: italic;
  margin-bottom: 32px;
}

.rules-section {
  font-size: 14px;
  color: var(--text-muted);
  border-top: none;
  padding-top: 24px;
}

.offer-link {
  color: var(--text-muted);
  text-decoration: underline;
}

.offer-link:hover {
  color: var(--text-main);
}

/* --- Подвал --- */
.footer {
  border-top: none;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Адаптивность для мобильных устройств --- */
@media (max-width: 580px) {
  h1.hero-title {
    font-size: 26px;
  }
  
  .author-profile {
    gap: 12px;
  }

  .author-photo {
    width: 52px;
    height: 52px;
  }

  .booking-card {
    padding: 20px;
  }
  
  .booking-details {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-meta {
    flex-direction: column;
  }
}/* --- Сброс базовых стилей и переменные --- */
:root {
  --primary: #2d3748;
  --accent: #4a5568;
  --brand-color: #3182ce;
  --brand-hover: #2b6cb0;
  --bg-main: #f7fafc;
  --bg-card: #ffffff;
  --bg-accent: #edf2f7;
  --text-main: #1a202c;
  --text-muted: #718096;
  --border-color: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth; /* Плавный переход по кнопке "Записаться" */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 17px;
  padding-bottom: 40px;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Навигация --- */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
}

.back-link {
  color: var(--brand-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--brand-hover);
}

.tag {
  background: var(--bg-accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Typo & Titles --- */
h1, h2, h3 {
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1.hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 24px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

/* --- Hero & Автор --- */
.hero {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 28px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.author-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-accent); /* Плейсхолдер до загрузки */
}

.author-info {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.3;
}

.author-info strong {
  color: var(--primary);
  font-size: 16px;
}

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

.hero-action {
  margin-top: 16px;
}

/* --- Цитаты и акцентные блоки --- */
.quote-box {
  background: #fffaf0;
  border-left: 4px solid #dd6b20;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-title {
  font-weight: 700;
  color: #c05621;
  margin-bottom: 4px;
}

.card-light {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 32px 0;
}

/* --- Списки --- */
.scenarios-list, .plan-list, .rules-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.scenarios-list li, .rules-section li {
  margin-bottom: 8px;
}

.plan-list li {
  margin-bottom: 12px;
  font-weight: 500;
}

/* --- Карточка записи --- */
.booking-card {
  background: var(--bg-card);
  border: 2px solid var(--brand-color);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(49, 130, 206, 0.12);
  margin: 36px 0;
}

.booking-header h2 {
  margin-top: 0;
  margin-bottom: 4px;
}

.booking-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.booking-details {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.detail-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.detail-value {
  font-weight: 600;
}

.detail-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-color);
}

.detail-price small {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Кнопка --- */
.btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  max-width: 280px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--brand-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--brand-hover);
  transform: translateY(-1px);
}

.contacts-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.contacts-note a {
  color: var(--brand-color);
}

/* --- Доп. блок и правила --- */
.note-box {
  background: var(--bg-accent);
  padding: 20px;
  border-radius: var(--radius);
  font-style: italic;
  margin-bottom: 32px;
}

.rules-section {
  font-size: 14px;
  color: var(--text-muted);
  border-top: none;
  padding-top: 24px;
}

.offer-link {
  color: var(--text-muted);
  text-decoration: underline;
}

.offer-link:hover {
  color: var(--text-main);
}

/* --- Подвал --- */
.footer {
  border-top: none;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Адаптивность для мобильных устройств --- */
@media (max-width: 580px) {
  h1.hero-title {
    font-size: 26px;
  }
  
  .author-profile {
    gap: 12px;
  }

  .author-photo {
    width: 52px;
    height: 52px;
  }

  .booking-card {
    padding: 20px;
  }
  
  .booking-details {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-meta {
    flex-direction: column;
  }
}

/* --- Стили для раздела FAQ --- */
.faq-section {
  margin: 40px 0;
}

.faq-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 16px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--brand-color);
  box-shadow: var(--shadow);
}

.faq-item summary {
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

/* Скрытие стандартного стрелочного маркера во всех браузерах */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Иконка плюс / минус */
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--brand-color);
  margin-left: 12px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 15px;
  color: var(--accent);
  line-height: 1.6;
}

.landing-page .booking-card-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #3182ce;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.landing-page .booking-mini-info {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}

.landing-page .mini-format {
  color: #718096;
}

.landing-page .mini-price {
  font-weight: 700;
  color: #2d3748;
}

.landing-page .btn-sm {
  width: auto;
  padding: 8px 16px;
  font-size: 14px;
}



.session-process {
  padding: 60px 20px;
  background-color: #ffffff;
}

.session-process__container {
  max-width: 1080px;
  margin: 0 auto;
}

.session-process__header {
  margin-bottom: 48px;
  text-align: left;
}

.session-process__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.session-process__subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
  max-width: 640px;
  line-height: 1.5;
}

/* Сетка карточек */
.session-process__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .session-process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Карточка этапа */
.process-card {
  background-color: #f9f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.process-card:hover {
  background-color: #ffffff;
  border-color: #d1d5db;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.06);
}

.process-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.process-card__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4f46e5;
  letter-spacing: -0.02em;
}

.process-card__time {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px 10px;
  border-radius: 20px;
}

.process-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.process-card__description {
  font-size: 0.975rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.process-card__description em {
  font-style: normal;
  color: #1f2937;
  background: rgba(238, 242, 255, 0.6);
  padding: 0 4px;
  border-radius: 4px;
}


.outcomes-section {
  padding: 80px 20px;
  background-color: #f4fbf7; /* Мягкий, очень светлый мятный оттенок для ощущения свежести */
}

.outcomes-section__container {
  max-width: 1080px;
  margin: 0 auto;
}

.outcomes-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px auto;
}

.outcomes-section__tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
  background-color: #e6f7f0;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.outcomes-section__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.outcomes-section__subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Сетка результатов */
.outcomes-section__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .outcomes-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Карточка */
.outcome-card {
  background-color: #ffffff;
  border: 1px solid #d1fae5;
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.03);
}

.outcome-card:hover {
  transform: translateY(-3px);
  border-color: #a7f3d0;
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.08);
}

.outcome-card__icon {
  width: 44px;
  height: 44px;
  background-color: #ecfdf5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.outcome-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.outcome-card__text {
  font-size: 0.975rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Финальная фраза */
.outcomes-section__footer {
  margin-top: 48px;
  text-align: center;
}

.outcomes-section__note {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  color: #065f46;
  background-color: #ffffff;
  border: 1px solid #a7f3d0;
  padding: 16px 28px;
  border-radius: 50px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}