/* Подключение Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #fafafa;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  font-size: 3rem;
  text-transform: uppercase;
}

h2 {
  font-size: 2.2rem;
  color: #23045c;
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fe1a92 0%, #fd5631 100%);
}

h3 {
  font-size: 1.5rem;
  color: #23045c;
}

p {
  margin-bottom: 15px;
}

section {
  padding: 80px 0;
  position: relative;
}

section:nth-child(odd) {
  background-color: #ffffff;
}

section:nth-child(even) {
  background-color: #f7f8fc;
}

/* Стили для кнопок */
.button {
  display: inline-block;
  background: linear-gradient(90deg, #fe1a92 0%, #fd5631 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 15px rgba(254, 26, 146, 0.2);
}

.button:hover {
  background: linear-gradient(90deg, #fd5631 0%, #fe1a92 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(254, 26, 146, 0.3);
}

/* Блок 1: Основное предложение */
.main-offer {
  background-image: url('https://www.transparenttextures.com/patterns/axiom-pattern.png'), linear-gradient(135deg, #23045c 0%, #4a149c 100%);
  background-size: cover;
  color: #fff;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.main-offer:before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(254, 26, 146, 0.3) 0%, rgba(253, 86, 49, 0.3) 100%);
  border-radius: 50%;
  z-index: 1;
}

.main-offer:after {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(254, 26, 146, 0.2) 0%, rgba(253, 86, 49, 0.2) 100%);
  border-radius: 50%;
  z-index: 1;
}

.main-offer .container {
  position: relative;
  z-index: 2;
}

.main-offer h1, .main-offer h2 {
  color: #fff;
  margin-bottom: 20px;
}

.main-offer h2 {
  font-weight: 400;
  text-transform: none;
}

.main-offer h2:after {
  display: none;
}

.main-offer .button {
  background: #fff;
  color: #23045c;
  font-weight: 700;
  padding: 18px 35px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.main-offer .button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

.main-offer .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.main-offer .button:hover:before {
  left: 100%;
}

/* Блок 2: Форма подписки */
.subscribe {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
  text-align: center;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
}

.subscribe:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #fe1a92 0%, #fd5631 100%);
}

.subscribe h2 {
  text-align: center;
  margin-bottom: 30px;
}

.subscribe h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.subscribe form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe input[type="email"] {
  padding: 18px 25px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 16px;
  margin-bottom: 25px;
  outline: none;
  transition: all 0.3s ease;
}

.subscribe input[type="email"]:focus {
  border-color: #fe1a92;
  box-shadow: 0 0 0 3px rgba(254, 26, 146, 0.1);
}

.subscribe .button {
  margin: 0 auto;
  padding: 18px 40px;
  font-size: 18px;
}

/* Блок 3: Продукты и цены */
.products {
  padding: 80px 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #fe1a92 0%, #fd5631 100%);
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-item h3 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #23045c;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fe1a92 0%, #fd5631 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 25px 0;
}

.product-item .button {
  width: 100%;
  margin-top: 20px;
}

/* Статья */
.article {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.article:before {
  content: "";
