@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-400.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-600.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-700.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat-800.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #111;
  background: #fff8ee;
}

h1, h2, h3 { font-family: 'Montserrat', Arial, sans-serif; font-weight: 800; }

a { color: inherit; }

.container { max-width: 860px; margin: 0 auto; }

/* Sticky nav */
.sticky-nav {
  position: sticky; top: 0; z-index: 100;
  background: #111; padding: 0 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.sticky-nav-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; gap: 32px; height: 56px;
  align-items: center; overflow-x: auto;
}
.sticky-nav a {
  color: #fff; text-decoration: none;
  font-size: 16px; font-weight: 600;
  opacity: 0.75; transition: opacity 0.2s;
  white-space: nowrap;
}
.sticky-nav a:hover { opacity: 1; color: #fbbe28; }

/* Urgency banner */
.urgency-banner {
  background: #fbbe28; color: #111;
  text-align: center; font-weight: 700;
  font-size: 18px; padding: 14px 20px;
}

/* Hero */
.hero {
  background: #111; color: #fff;
  padding: 60px 20px; text-align: center;
}
.hero-tag {
  display: inline-block; background: #fbbe28; color: #111;
  font-weight: 700; font-size: 18px;
  padding: 6px 20px; border-radius: 4px;
  margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 1px;
}
.hero h1 { font-size: clamp(28px,5vw,56px); line-height: 1.15; max-width: 900px; margin: 0 auto 24px; }
.hero h1 span { color: #fbbe28; }
.hero-subtitle { font-size: clamp(20px,2.5vw,26px); opacity: 0.85; max-width: 700px; margin: 0 auto 40px; }
.hero-meta { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; font-size: 20px; }
.hero-meta-item .icon {
  width: 40px; height: 40px; background: #fbbe28;
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px;
}

/* Buttons */
.btn {
  display: inline-block; background: #fbbe28; color: #111;
  font-size: 22px; font-weight: 800;
  padding: 18px 48px; border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none; cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(251,190,40,0.4); }
.btn-large { font-size: 24px; padding: 22px 60px; }
.btn-hero { animation: btn-attention 2s ease-in-out infinite; }
.btn-hero:hover { animation: none; transform: translateY(-2px); }
@keyframes btn-attention {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(251,190,40,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 8px 40px rgba(251,190,40,0.6); }
}

/* Sections */
.section { padding: 72px 20px; }
.section-beige { background: #fff8ee; }
.section-white { background: #fff; }
.section-dark { background: #111; color: #fff; }
.section-blue { background: #d8f7ff; }
.section-yellow { background: #fff4cc; }

.section-label {
  display: inline-block; font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 16px;
}
.section-dark .section-label { color: #aaa; }
.section-title { font-size: clamp(26px,4vw,44px); line-height: 1.2; margin-bottom: 24px; }
.section-title span { color: #fbbe28; }
.divider { width: 64px; height: 4px; background: #fbbe28; border-radius: 2px; margin: 0 0 36px; }

.lead-text { font-size: 22px; line-height: 1.7; color: #333; margin-bottom: 20px; }

/* Intro card */
.intro-card {
  display: grid; grid-template-columns: 280px 1fr; gap: 0;
  margin-top: 36px; margin-bottom: 36px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.intro-photo { position: relative; background: #111; min-height: 340px; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.intro-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); padding: 20px 18px; }
.intro-photo-caption p:first-child { color: #fff; font-weight: 700; font-size: 18px; margin: 0; }
.intro-photo-caption p:last-child { color: #fbbe28; font-size: 14px; margin: 4px 0 0; }
.intro-text { background: #fff8ee; padding: 36px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.intro-text p { font-size: 19px; line-height: 1.7; color: #333; }

/* Check grid */
.check-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px; margin-top: 32px;
}
.check-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff8ee; border-radius: 12px; padding: 20px;
  border-left: 4px solid #fbbe28;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.check-item:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 8px 28px rgba(251,190,40,0.2); background: #fff4cc; }
.check-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.check-item p { font-size: 20px; line-height: 1.6; color: #333; }

.pulse-card { background:#111; color:#fff; border-radius:16px; padding:32px; margin-top:36px; text-align:center; }
.pulse-card p { font-size: 22px; font-weight: 700; color: #fbbe28; margin-bottom: 20px; }

/* For who */
.forwho-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px;
}
.forwho-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: 12px; padding: 20px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.forwho-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.forwho-check {
  width: 36px; height: 36px; min-width: 36px;
  background: #43c466; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.forwho-item p { font-size: 20px; line-height: 1.6; color: #333; }

/* Benefits */
.benefit-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.benefit-item { display: flex; align-items: center; gap: 20px; }
.benefit-num {
  width: 44px; height: 44px; min-width: 44px;
  background: #fbbe28; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; color: #111;
}
.benefit-item p { font-size: 20px; line-height: 1.5; color: #333; }

/* Reasons (dark) */
.reasons-list { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.reason-item {
  display: flex; align-items: flex-start; gap: 20px;
  background: rgba(255,255,255,0.06); border-radius: 12px;
  padding: 22px 24px; border-left: 4px solid #fbbe28;
  transition: background 0.2s;
}
.reason-item:hover { background: rgba(255,255,255,0.1); }
.reason-num {
  min-width: 44px; height: 44px; background: #fbbe28; color: #111;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.reason-item p { font-size: 20px; line-height: 1.7; color: rgba(255,255,255,0.85); }
.reason-item strong { color: #fbbe28; }

/* Program */
.rp-main-block { background: #111; border-radius: 20px; padding: 36px 40px; margin-top: 36px; }
.rp-main-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #fbbe28; margin-bottom: 12px; }
.rp-main-title { font-size: clamp(24px,3vw,34px); font-weight: 800; color: #fff; margin-bottom: 28px; line-height: 1.2; }
.rp-items { display: flex; flex-direction: column; gap: 14px; }
.rp-item { display: flex; align-items: flex-start; gap: 14px; }
.rp-dot { width: 10px; height: 10px; min-width: 10px; background: #fbbe28; border-radius: 50%; margin-top: 8px; }
.rp-item p { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.rp-item strong { color: #fff; }

.rp-bonus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-top: 20px; }
.rp-bonus-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #f8f8f8; border-radius: 14px; padding: 22px 24px;
  border-left: 4px solid #fbbe28;
}
.rp-bonus-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.rp-bonus-item strong { display: block; font-size: 18px; font-weight: 700; color: #111; margin-bottom: 6px; }
.rp-bonus-item p { font-size: 16px; line-height: 1.5; color: #555; margin: 0; }

/* Author */
.author-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; margin-top: 36px; }
.author-photo-wrap { position: relative; }
.author-photo-wrap img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 8px 40px rgba(0,0,0,0.15); }
.author-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: #fbbe28; color: #111; font-weight: 800; font-size: 16px;
  white-space: nowrap; padding: 10px 24px; border-radius: 40px;
  box-shadow: 0 4px 16px rgba(251,190,40,0.4);
}
.author-text p { font-size: 19px; line-height: 1.75; color: #333; margin-bottom: 16px; }
.author-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.author-stat { background: #fbbe28; border-radius: 14px; padding: 20px; text-align: center; }
.author-stat strong { display: block; font-size: 24px; font-weight: 800; color: #111; }
.author-stat span { font-size: 15px; color: #333; margin-top: 4px; display: block; }

/* Pricing */
.ao-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.ao-item {
  display: flex; gap: 24px; background: #fff;
  border-radius: 16px; padding: 28px 32px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ao-item--featured { background: #fff; border: 3px solid #fbbe28; box-shadow: 0 8px 40px rgba(251,190,40,0.18); }
.ao-num {
  min-width: 52px; height: 52px; background: #111; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px; flex-shrink: 0;
}
.ao-num--featured { background: #fbbe28; color: #111; }
.ao-badge-top { display: inline-block; background: #fbbe28; color: #111; font-weight: 800; font-size: 13px; padding: 4px 14px; border-radius: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.ao-title { font-size: 24px; font-weight: 800; color: #111; margin-bottom: 6px; }
.ao-subtitle { font-size: 16px; color: #555; margin-bottom: 20px; line-height: 1.5; }
.ao-features { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; }
.ao-features li { font-size: 18px; line-height: 1.55; color: #333; padding-left: 24px; position: relative; }
.ao-features li::before { content: '✓'; position: absolute; left: 0; color: #43c466; font-weight: 800; }
.ao-price-block { margin-top: 24px; padding-top: 20px; border-top: 1px solid #eee; }
.ao-price-label { font-size: 16px; color: #888; margin-bottom: 4px; }
.ao-price-old { text-decoration: line-through; color: #888; }
.ao-price-note { font-size: 15px; color: #555; margin-bottom: 16px; }
.ao-price-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.ao-price { font-size: 42px; font-weight: 800; color: #111; }
.ao-price-discount { display: inline-block; background: #ff5757; color: #fff; font-weight: 700; font-size: 14px; padding: 4px 12px; border-radius: 20px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.faq-item { background: #fff; border-radius: 12px; padding: 22px 26px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-item h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: #111; }
.faq-item p { font-size: 18px; line-height: 1.6; color: #555; }

/* Footer */
.footer {
  background: #111; color: rgba(255,255,255,0.45);
  padding: 48px 20px 32px; font-size: 14px; line-height: 1.7;
}
.footer a { color: #fbbe28; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.footer-top {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; margin-bottom: 24px;
}
.footer-logo { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; }
.footer-logo span { color: #fbbe28; font-weight: 700; }
.footer-logo a { display: block; }
.footer-social { display: flex; gap: 16px; justify-content: center; }
.footer-social a {
  display: inline-block; padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
}
.footer-social a:hover { border-color: #fbbe28; color: #fbbe28; text-decoration: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin-bottom: 16px;
}
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: #fbbe28; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.25); max-width: 480px; line-height: 1.6; }

@media (max-width: 700px) {
  .check-grid, .forwho-grid, .rp-bonus-grid { grid-template-columns: 1fr; }
  .intro-card, .author-grid { grid-template-columns: 1fr; }
  .intro-photo { min-height: 260px; }
  .ao-item { flex-direction: column; }
  .author-stats { grid-template-columns: 1fr; }
  .hero-meta { gap: 16px; }
  .section { padding: 48px 16px; }
}
