* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #1c1c1c;
}

/* ОБЩЕЕ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 20px;
}

h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* HERO */
.hero {
  padding: 80px 20px;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 520px;
  background: linear-gradient(135deg, #f1f3f8, #e8edf5);
  border-radius: 32px;
  overflow: hidden;
  padding: 80px;
}

.hero-content {
      margin-top: -40px;

  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  background: #ff9408;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 40px;
}

/* КНОПКА */
.btn {
  background: #99bf45;
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

/* ДЕВУШКА */
.hero-woman {
  position: absolute;
  bottom: 0;
  right: 80px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.hero-woman img {
  height: 480px;
  object-fit: contain;
}

/* ДЕКОР */
.hero-decor {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.decor-1 {
  width: 420px;
  height: 420px;
  background: rgba(235,132,185,0.12);
  top: -120px;
  left: -120px;
}

.decor-2 {
  width: 300px;
  height: 300px;
  background: rgba(153,191,69,0.14);
  bottom: 40px;
  left: 180px;
}

.decor-3 {
  width: 360px;
  height: 360px;
  background: rgba(160,180,220,0.18);
  top: 60px;
  right: 120px;
}

.decor-ring {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.5);
  top: 40px;
  right: 40px;
}

/* КАРТОЧКИ */
.card-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
  box-shadow:
    5px 20px 40px rgba(0, 0, 0, 0.06),
    10px 5px 5px rgba(0, 0, 0, 0.04);
}


/* СПИСКИ */
.list,
.expect-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li,
.expect-list li {
  padding-left: 28px;
  margin-bottom: 16px;
  position: relative;
}

.list li::before,
.expect-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #99bf45;
  font-size: 22px;
}

/* EXPECTATIONS */
.expectations h2 span {
  font-weight: 400;
}

/* ПРОГРАММА */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.program-card {
  background: #f4f6fb;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.program-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.program-card span {
  display: block;
  padding: 20px;
  font-weight: 500;
}

/* ФОРМА */
.form {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input {
  padding: 14px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

/* FOOTER */
.footer {
  background: #1f1f1f;
  color: #000000;
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 40px;
}

.footer a {
  color: #99bf45;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}
/* PROGRAM BLOCK */

.program-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.program-title span {
  font-weight: 400;
}

.program-subtitle {
  margin-bottom: 40px;
  color: #555;
  font-size: 16px;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ITEM */
.program-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.program-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* DATE */
.program-date {
  font-size: 14px;
  color: #666;
}

.program-date .day {
  font-size: 18px;
  font-weight: 600;
  color: #1c1c1c;
}

.program-date .time {
  margin-top: 4px;
}

/* CONTENT */
.program-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}

.program-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.program-content .speaker {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .program-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program-date {
    font-size: 14px;
  }
}
/* PRICE + FORM */

.price-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* PRICE */
.price-box {
  background: #f1f1f1;
  border-radius: 24px;
  padding: 40px;
}

.price-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 16px;
}

.new-price {
  font-size: 26px;
  font-weight: 700;
  margin: 10px 0;
}

.note {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

.price-info p {
  font-size: 15px;
  margin: 6px 0;
}

/* FORM */
.form-box {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.form-box h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box input[type="text"],
.form-box input[type="tel"] {
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid #ddd;
}

/* CHECKBOX */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #666;
}

.checkbox input {
  margin-top: 3px;
}
/* NOTICE BLOCK */

.notice {
  background: #fafafa;
  border-radius: 24px;
  padding: 50px 60px;
  border: 1px solid #eee;
}

.notice-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.notice-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
  max-width: 720px;
}

/* LIST */
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 820px;
}

.notice-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.5;
}

/* ACCENT ICON */
.notice-list li::before {
  content: "ℹ";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #99bf45;
}

.notice-list span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-top: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  .notice {
    padding: 32px 22px;
  }

  .notice-title {
    font-size: 20px;
  }
}


/* BUTTON */
.btn.full {
  width: 100%;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .price-form {
    grid-template-columns: 1fr;
  }
}
/* FOOTER */

.footer {
  margin-top: 5px;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.footer-inner {
  padding: 5px 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-title {
  font-weight: 100;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #99bf45;
}

.footer-bottom {
  border-top: 1px solid #eee;
  padding: 16px 20px;
  font-size: 13px;
  color: #999;
}


/* =========================
   MOBILE ADAPTIVE
   ========================= */
@media (max-width: 768px) {

  /* ОБЩЕЕ */
  .section {
    padding: 40px 0;
  }

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

  .card-box {
    padding: 32px 24px;
    border-radius: 20px;
  }

  /* HERO */
  .hero {
    padding: 20px 0;
  }

  .hero-inner {
    height: auto;
    padding: 40px 24px;
    border-radius: 24px;
  }

  .hero-content {
    margin-top: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-tag {
    font-size: 13px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  /* ДЕВУШКА В HERO */
  .hero-woman {
    position: static;
    margin-top: 30px;
    justify-content: center;
  }

  .hero-woman img {
    height: 260px;
  }

  /* СПИСКИ */
  .list li {
    font-size: 15px;
    margin-bottom: 12px;
  }

  /* ПРОГРАММА */
  .program-title {
    font-size: 24px;
  }

  .program-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .program-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 20px;
  }

  .program-date .day {
    font-size: 16px;
  }

  .program-content h3 {
    font-size: 16px;
  }

  .program-content p {
    font-size: 14px;
  }

  /* PRICE + FORM */
  .price-form {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .price-box,
  .form-box {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .price-box h3,
  .form-box h3 {
    font-size: 20px;
  }

  .new-price {
    font-size: 22px;
  }

  /* FORM */
  .form-box input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  /* NOTICE */
  .notice {
    padding: 28px 22px;
  }

  .notice-title {
    font-size: 18px;
  }

  .notice-text {
    font-size: 14px;
  }

  .notice-list li {
    font-size: 14px;
  }

  /* FOOTER */
  .footer-inner {
    padding: 30px 20px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 12px 20px;
  }
  @media (max-width: 768px) {

  /* HERO */
  .hero-inner {
    position: relative;
    overflow: hidden;
  }

  /* ЖЕНЩИНА КАК В РЕФЕРЕНСЕ */
  .hero-woman {
    position: absolute;
    right: -70px;        /* уезжает вправо */
    bottom: -147px;
    margin: 0;
    display: block;
    pointer-events: none;
  }

  .hero-woman img {
    height: 300px;
    width: auto;
    object-fit: cover;
  }

.footer {
  padding: 40px 0 20px;
  background: #ffffff;
  font-size: 14px;
  color: #111111;
}

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

.footer-left {
  max-width: 400px;
}

.footer-brand {
  margin-bottom: 16px;
  line-height: 1.4;
}

.footer-legal {
  line-height: 1.6;
}

.footer-right h4 {
  margin-bottom: 12px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-right a {
  display: block;
  margin-bottom: 8px;
  color: #000;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #666;
  text-align: center;
}

/* Адаптив */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
  }
}



  /* ТЕКСТ НЕ НАЛЕЗАЕТ */
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding-right: 84px; /* место под фото */
  }
}

}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-vegetables {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  max-width: 100%;
  opacity: 0.25;
  pointer-events: none;
}

.hero-vegetables img {
  width: 100%;
  height: auto;
}
.hero-woman::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0) 65%
  );
  z-index: -2;
}
.hero-vegetables {
  opacity: 0.18;
  filter: blur(2px) saturate(0.9);
  transform: translateX(-50%) scale(1.05);
}
.hero-woman img {
  filter: contrast(1.02) saturate(1.03);
}
.hero-woman::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 18px;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.25),
    transparent 100%
  );
  filter: blur(118px);
  z-index: -1;
}