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

:root {
  --cream: #FAF7F2;
  --sand: #F0E8DC;
  --sand-mid: #E8D8C4;
  --terracotta: #C4785A;
  --terracotta-dark: #A5613F;
  --rose-light: #F2DDD5;
  --brown-dark: #2A1F18;
  --brown-mid: #5C4033;
  --brown-light: #8B6555;
  --text-main: #2D211A;
  --text-secondary: #6B4F3F;
  --border: #DDD0C0;
  --white: #FFFFFF;
  --font: 'Golos Text', 'PT Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Cormorant', 'PT Serif', Georgia, serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(44,31,24,0.08);
  --shadow-md: 0 4px 28px rgba(44,31,24,0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--cream);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--terracotta);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.site-nav a {
  color: var(--text-main);
  font-size: 0.925rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--terracotta);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--terracotta-dark) !important;
  text-decoration: none !important;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  background: var(--rose-light);
  color: var(--terracotta-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-secondary {
  color: var(--brown-mid);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--brown-light);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.hero-badge-text strong {
  display: block;
  color: var(--text-main);
  font-size: 0.95rem;
}

section {
  padding: 72px 0;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.benefits {
  background: var(--sand);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.benefit-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.for-whom-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.for-whom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.for-whom-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.for-whom-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--rose-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}

.for-whom-text strong {
  display: block;
  font-size: 0.975rem;
  color: var(--brown-dark);
  margin-bottom: 3px;
}

.for-whom-text span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.learn {
  background: var(--brown-dark);
  color: var(--white);
}

.learn .section-tag {
  color: var(--sand-mid);
}

.learn .section-title {
  color: var(--white);
}

.learn .section-lead {
  color: rgba(255,255,255,0.7);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.learn-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.learn-num {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  min-width: 36px;
}

.learn-item-title {
  font-weight: 600;
  font-size: 0.975rem;
  margin-bottom: 6px;
  color: var(--white);
}

.learn-item-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.format-card {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.format-emoji {
  font-size: 2rem;
  margin-bottom: 14px;
}

.format-title {
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.format-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.showcase {
  background: var(--sand);
}

.showcase-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.showcase-images img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.showcase-images img:first-child {
  aspect-ratio: 16/9;
  grid-column: span 2;
}

.showcase-images img:last-child {
  aspect-ratio: 4/3;
}

.showcase-note {
  margin-top: 20px;
  font-size: 0.84rem;
  color: var(--brown-light);
  font-style: italic;
}

.author-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}

.author-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.author-role {
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.author-bio {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.author-stats {
  display: flex;
  gap: 32px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.reviews {
  background: var(--sand);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}

.review-stars {
  color: #D97706;
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-dark);
}

.review-meta {
  font-size: 0.78rem;
  color: var(--brown-light);
  margin-top: 2px;
}

.lead-form-section {
  background: var(--terracotta);
}

.lead-form-section .section-tag {
  color: rgba(255,255,255,0.7);
}

.lead-form-section .section-title {
  color: var(--white);
}

.lead-form-section .section-lead {
  color: rgba(255,255,255,0.8);
}

.lead-form-section .section-tag,
.lead-form-section .section-title,
.lead-form-section .section-lead {
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 560px;
  margin: 40px auto 0;
  box-shadow: 0 8px 48px rgba(44,31,24,0.18);
}

.form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.975rem;
  font-family: var(--font);
  background: var(--cream);
  color: var(--text-main);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--terracotta);
}

.form-group input::placeholder {
  color: var(--brown-light);
}

.form-agree {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
  line-height: 1.5;
}

.form-agree a {
  color: var(--terracotta);
}

.form-submit {
  width: 100%;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font);
}

.form-submit:hover {
  background: var(--terracotta-dark);
}

.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand .logo {
  color: var(--cream);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer-legal strong {
  color: rgba(255,255,255,0.55);
}

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

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(44,31,24,0.18);
  padding: 22px 24px;
  z-index: 999;
  border: 1px solid var(--border);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner a {
  color: var(--terracotta);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
}

.cookie-accept:hover {
  background: var(--terracotta-dark);
}

.cookie-decline {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s;
}

.cookie-decline:hover {
  border-color: var(--brown-light);
}

.legal-page {
  padding: 60px 0 80px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.legal-page .legal-date {
  font-size: 0.85rem;
  color: var(--brown-light);
  margin-bottom: 36px;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin: 32px 0 10px;
}

.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.legal-company {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 36px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-company strong {
  color: var(--text-main);
}

.success-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
}

.success-page h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.success-page p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-badge { bottom: -10px; left: 10px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .for-whom-image { max-width: 320px; margin: 0 auto; }
  .for-whom-image img { aspect-ratio: 4/3; }
  .learn-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .showcase-images img:first-child { grid-column: span 1; }
  .author-inner { grid-template-columns: 1fr; }
  .author-image { max-width: 280px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 24px; display: block; width: 100%; }
  .nav-cta { margin: 8px 24px; border-radius: var(--radius-sm); padding: 12px 20px !important; text-align: center; }
  .burger { display: flex; }
  .site-header { position: relative; }
}

@media (max-width: 600px) {
  section { padding: 52px 0; }
  .hero { padding: 40px 0 40px; }
  .form-wrap { padding: 32px 22px; }
  .format-grid { grid-template-columns: 1fr; }
  .author-stats { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; }
  .showcase-images { grid-template-columns: 1fr; }
  .showcase-images img:first-child { grid-column: span 1; }
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius) var(--radius) 0 0; max-width: 100%; }
}
