html {
  scroll-behavior: smooth;
}

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



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

  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; }

  /* =========== 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);
    font-weight: 400;
    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;
    font-weight: 400;
  }
  .hero-meta-item .icon {
    width: 40px; height: 40px;
    background: #fbbe28;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
  }
  .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;
  }
  .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-green {
    background: #43c466;
    color: #fff;
  }
  .btn-green:hover { box-shadow: 0 8px 24px rgba(67,196,102,0.4); }

  @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); }
  }
  .btn-hero {
    animation: btn-attention 2s ease-in-out infinite;
  }
  .btn-hero:hover {
    animation: none;
    transform: translateY(-2px);
  }

  /* =========== 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; }

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

  .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; }
  .section-dark .section-title span { color: #fbbe28; }

  /* =========== PROBLEM BLOCK =========== */
  .problem-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-top: 32px;
  }
  .problem-list li {
    background: #fff;
    border-left: 5px solid #ff5757;
    padding: 18px 22px;
    border-radius: 0 8px 8px 0;
    font-size: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .problem-list li::before {
    content: "✗";
    color: #ff5757;
    font-weight: 900;
    font-size: 22px;
    flex-shrink: 0;
  }

  /* =========== WHAT WILL BE =========== */
  .program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
    margin-top: 36px;
  }
  .program-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .program-num {
    width: 44px; height: 44px;
    min-width: 44px;
    background: #111;
    color: #fbbe28;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 20px;
  }
  .program-card p { font-size: 20px; line-height: 1.5; }

  /* =========== BONUSES =========== */
  .bonus-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 32px;
  }
  .bonus-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 20px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .bonus-icon {
    font-size: 26px;
    flex-shrink: 0;
  }

  /* =========== AUTHOR =========== */
  .author-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .author-photo {
    width: 220px;
    height: 220px;
    border-radius: 16px;
    background: #e0e0e0;
    flex-shrink: 0;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
  }
  .author-info { flex: 1; min-width: 280px; }
  .author-info h3 { font-size: 28px; margin-bottom: 10px; }
  .author-info p { font-size: 20px; line-height: 1.7; color: #333; }
  .author-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .stat-box {
    background: #fbbe28;
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    min-width: 130px;
  }
  .stat-box strong { display: block; font-size: 28px; font-weight: 800; }
  .stat-box span { font-size: 16px; }

  /* =========== ICEBERG =========== */
  .iceberg-block {
    background: #111;
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    margin-top: 40px;
  }
  .iceberg-block h3 { font-size: 26px; margin-bottom: 20px; color: #fbbe28; }
  .iceberg-list { list-style: none; display: grid; gap: 12px; }
  .iceberg-list li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 20px;
  }
  .iceberg-list li::before { content: "→"; color: #fbbe28; font-weight: 700; }

  /* =========== CTA BLOCK =========== */
  .cta-box {
    background: #fbbe28;
    border-radius: 20px;
    padding: 52px 40px;
    text-align: center;
  }
  .cta-box h2 { font-size: clamp(24px, 4vw, 40px); margin-bottom: 16px; color: #111; }
  .cta-box p { font-size: 22px; color: #333; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
  .cta-date {
    display: inline-flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
  }
  .cta-date-item {
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 22px;
    font-weight: 700;
  }
  .cta-date-item span { display: block; font-size: 14px; font-weight: 400; opacity: 0.7; margin-bottom: 4px; }
  .price-note {
    font-size: 18px;
    color: #555;
    margin-top: 16px;
  }

  /* =========== URGENCY =========== */
  @keyframes urgency-pulse {
    0%, 100% { background: #ff5757; }
    50% { background: #e03030; }
  }
  .urgency-banner {
    background: #ff5757;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    animation: urgency-pulse 1.5s ease-in-out infinite;
  }

  /* =========== DIVIDER =========== */
  .divider {
    width: 60px;
    height: 5px;
    background: #fbbe28;
    border-radius: 3px;
    margin: 20px 0;
  }

  /* =========== HIGHLIGHT LIST =========== */
  .highlight-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }
  .highlight-list li {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 20px;
  }
  .highlight-list li::before {
    content: "✓";
    color: #43c466;
    font-weight: 900;
    font-size: 22px;
    flex-shrink: 0;
  }

  /* =========== FOOTER =========== */
  footer {
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #aaa;
  }
  .footer-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .footer-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
  }
  .footer-logo {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.6;
  }
  .footer-logo span { color: #fbbe28; }
  .footer-logo a {
    color: rgba(255,255,255,0.35) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    display: block;
    margin-top: 4px;
  }
  .footer-social {
    display: flex;
    gap: 10px;
  }
  .footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .footer-social a:hover { background: #fbbe28; color: #111 !important; }
  .footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.07);
  }
  .footer-links {
    display: flex; gap: 6px 20px; flex-wrap: wrap;
    margin-bottom: 0;
    justify-content: center;
  }
  .footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.4) !important;
    text-decoration: none;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.75) !important; }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-legal {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    line-height: 1.8;
  }
  .footer-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    max-width: 100%;
    line-height: 1.6;
    text-align: center;
  }
  @media (max-width: 600px) {
    .footer-top { flex-direction: column; gap: 20px; }
    .footer-bottom { flex-direction: column; }
    .footer-disclaimer { text-align: left; max-width: 100%; }
  }

  @media (max-width: 700px) {
    .intro-card { grid-template-columns: 1fr !important; }
    .intro-card-photo { min-height: 280px !important; }
  }
  @media (max-width: 600px) {
    .hero-meta { flex-direction: column; align-items: center; }
    .author-block { flex-direction: column; align-items: center; }
    .cta-box { padding: 36px 20px; }
    .iceberg-block { padding: 28px 20px; }
    .program-grid { grid-template-columns: 1fr; }
  }

@keyframes card-pulse {
        0%, 100% { transform: scale(1); box-shadow: 0 4px 24px rgba(251,190,40,0.1); }
        50% { transform: scale(1.03); box-shadow: 0 8px 40px rgba(251,190,40,0.35); }
      }
      .pulse-card {
        animation: card-pulse 2.5s ease-in-out infinite;
      }
      .pulse-ring { display: none; }