* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1d293d;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #1d293d;
}

.section-title--1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #007955;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #45556c;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 188, 124, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 188, 124, 0.4);
}

.btn--secondary {
  background: white;
  color: #314158;
  border: 2px solid #e1e8f0;
}

.btn--secondary:hover {
  border-color: #00bc7c;
  color: #00bc7c;
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn__icon {
  font-size: 1.2em;
}

.nav--2 {
  text-decoration: none;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 188, 124, 0.1);
  border: 1px solid rgba(0, 188, 124, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  color: #007955;
  margin-bottom: 1.5rem;
}

.badge--light {
  background: rgba(94, 233, 181, 0.2);
  border-color: rgba(0, 212, 145, 0.3);
  color: #5ee9b5;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: #00bc7c;
  border-radius: 50%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 188, 124, 0.3);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
}

.logo__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #263145;
}

.logo__subtitle {
  font-size: 0.75rem;
  color: #00bc7c;
  font-weight: 500;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: #45556c;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00bc7c;
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: #00bc7c;
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  padding: 0.5rem 1.25rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1d293d;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__content {
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu__content {
  transform: translateY(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-menu__link {
  color: #1d293d;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu__link:hover {
  color: #00bc7c;
}

/* Hero Section */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 70px;
  background: radial-gradient(circle at right, #ffffff 0%, #f9fafb 60%, #00bc7d18 100%);
  background-size: 200% 200%;
  animation: waveGradient 6s ease-in-out infinite;
}

@keyframes waveGradient {
  0% { background-position: 50% 50%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 50% 50%; }
}

.hero__bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

.hero__gradient--1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(90deg, rgba(0, 188, 125, 0.1), rgba(0, 150, 137, 0.1));
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.hero__gradient--2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(90deg, rgba(208, 250, 229, 0.3), rgba(203, 251, 241, 0.3));
  bottom: 20%;
  right: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1d293d, #45556c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title--1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.125rem;
  color: #45556c;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.btn-sert {
  margin-left: 1rem;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00bc7c;
  display: block;
}

.stat__label {
  font-size: 0.875rem;
  color: #45556c;
  margin-top: 0.25rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Food Card with Slider */
.food-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 188, 124, 0.1);
  border: 1px solid #f2f4f6;
  position: relative;
}

.food-card__slider {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.food-card__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  transform: translateX(100%);
}

.food-card__slide.active {
  opacity: 1;
  transform: translateX(0);
}

.food-card__slide.prev {
  transform: translateX(-100%);
}



.food-card__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
}

.food-card__overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.food-card__overlay p {
  opacity: 0.9;
  font-size: 0.875rem;
}

.food-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 2;
}

.food-card__nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.food-card__nav--prev {
  left: 15px;
}

.food-card__nav--next {
  right: 15px;
}

.food-card__features {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  justify-content: center;
}

.feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
  padding: 1rem;
  background: linear-gradient(162deg, #ecfdf5, #d0fae5);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1;
  text-align: center;
}

.feature-badge__emoji {
  font-size: 1.2rem;
  font-weight: 600;
  color: #004d36;
  display: flex;
  align-items: center;
}



.feature-badge__emoji .emoji {
  margin-right: 0.25rem;
  width: 1.2rem;
}

.process-step__icon .emoji {

  width: 3.5rem;
}

.feature-badge__text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #007955;
}

/* Order Options */
.order-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.order-options label {
  font-weight: 500;
  color: #1d293d;
  font-size: 0.95rem;
}

.order-options select,
.order-options input[type="number"],
.order-options input[type="text"],
.order-options textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e1e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1d293d;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  box-sizing: border-box;
  height: auto;
  min-height: 48px;
}

.order-options select:focus,
.order-options input[type="number"]:focus,
.order-options input[type="text"]:focus,
.order-options textarea:focus {
  outline: none;
  border-color: #00bc7c;
  box-shadow: 0 6px 20px rgba(0, 188, 124, 0.15);
}

.order-options select:hover,
.order-options input[type="number"]:hover,
.order-options input[type="text"]:hover,
.order-options textarea:hover {
  border-color: #00bc7c;
}


.logo {
  width: 6rem;
  transition: filter .3s;
}
.logo:hover {
  filter: brightness(0) invert(1);
}



.order-options select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%2300bc7c' height='24' viewBox='0 0 24 24' width='24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
  cursor: pointer;
}

.order-options textarea {
  resize: vertical;
  min-height: 100px;
}

.order-options input[type="text"] {
  padding: 1rem;
}

#place-home {
  padding: 1rem;
  min-height: 48px;
}

#custom-days {
  transition: all 0.3s ease;
}

/* Daily Menu Section */
.daily-menu {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.daily-menu__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.daily-menu__info h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.daily-menu__info .section-subtitle {
  text-align: left;
  margin-bottom: 2rem;
}

.meal-schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meal-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 2px solid #f2f4f6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.meal-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #d0fae5;
}

.meal-item__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9900, #f6337e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 105, 0, 0.3);
}

.meal-item:nth-child(2) .meal-item__icon {
  background: linear-gradient(135deg, #f0b100, #ff6900);
}

.meal-item:nth-child(3) .meal-item__icon {
  background: linear-gradient(135deg, #ad46ff, #2b7fff);
}

.meal-item:nth-child(4) .meal-item__icon {
  background: linear-gradient(135deg, #00c950, #00bba7);
}

.meal-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.meal-item__header h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.meal-item__time {
  font-size: 0.875rem;
  color: #009865;
  font-weight: 500;
}

.meal-item__content p {
  color: #61738d;
  font-size: 0.875rem;
  margin: 0;
}

.daily-menu__details .badge {
  margin-bottom: 1.5rem;
}

.daily-menu__details h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.daily-menu__details > p {
  color: #45556c;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 188, 124, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-item__content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-item__content p {
  color: #45556c;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Nutrition Facts Section */
.nutrition-facts {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.nutrition-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid #f0f4f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.nutrition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #d0fae5;
}

.nutrition-card__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.nutrition-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1d293d;
}

.nutrition-card__value {
  font-size: 2rem;
  font-weight: 700;
  color: #00bc7c;
  margin-bottom: 0.5rem;
}

.nutrition-card__description {
  color: #45556c;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.nutrition-card__benefit {
  color: #009865;
  font-weight: 500;
  font-size: 0.875rem;
}

/* Plans Section */
.plans {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#plans {
  margin-top: 3rem;
  width: 100%;
  max-width: 1200px;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.plan-tab {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e1e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-tab.active {
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  color: white;
  border-color: #00bc7c;
}

.plan-tab:not(.active):hover {
  border-color: #00bc7c;
  color: #00bc7c;
}

.plans-content {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.plan-details {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  width: 100%;
}

.plans-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
}

.plan-details {
  flex: 1;
}

.sample-menu {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  max-width: none;
}

.plan-details[style*="block"] {
  display: grid;
}

.plan-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 25px 50px rgba(0, 188, 124, 0.1);
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-card__calories {
  color: #009865;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.plan-card > p {
  color: #45556c;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.plan-card__price {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d293d;
  padding: 0;
  margin-bottom: 0;
}

.price-1 {
  margin-bottom: 0.5rem !important;
}

.period {
  color: #61738d;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.plan-card__features h4 {
  margin-bottom: 1rem;
  color: #1d293d;
}

.plan-card__features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #45556c;
}

.plan-card__features li::before {
  content: '✓';
  color: #00bc7c;
  font-weight: bold;
}

.sample-menu {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 25px 50px rgba(0, 188, 124, 0.1);
}

.sample-menu h4 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1d293d;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(90deg, #f8fafc, rgba(236, 253, 245, 0.3));
  border-radius: 12px;
}

.menu-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 188, 124, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
  width: 15rem;
}


.menu-item__meal {
  font-size: 0.75rem;
  color: #009865;
  font-weight: 500;
}

.menu-item__calories {
  font-size: 0.75rem;
  color: #61738d;
  margin-left: auto;
}


.menu-item__content p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d293d;
  margin: 0;
  display: flex;
}

.menu-total {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #e1e8f0;
  color: #1d293d;
}

.calendar {
  background: white;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 25px 50px rgba(0, 188, 124, 0.1);
  margin-bottom: 1.5rem;
}

.calendar h4 {
  text-align: center;
  margin-bottom: 1rem;
  color: #1d293d;
}

.calendar-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.calendar-scroll::-webkit-scrollbar {
  display: none;
}

.calendar-day {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: #f8fafc;
  text-align: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
}

.calendar-day.today {
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  color: white;
  font-weight: bold;
  border-color: #00a86b;
}

.calendar-day:hover {
  background: rgba(0, 188, 124, 0.1);
}

.calendar-day.selected {
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  color: #fff;
  border-color: #00bc7c;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,188,124,0.15);
}

.calendar-arrow {
  background: #f8fafc;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin: 1rem 5px 0;
  transition: background 0.2s;
}

.calendar-arrow:hover {
  background: #00bc7c;
  color: #fff;
}

/* Process Section */
.process {
  padding-top: 5rem;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.process-steps > * {
  flex: 1 1 250px;
  max-width: 400px;
}



.process-step {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid #a4f4cf;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.process-step__number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 15px rgba(0, 188, 124, 0.3);
}

.process-step__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #1d293d;
}

.process-step p {
  color: #45556c;
  line-height: 1.6;
  font-size: 0.8rem;
}

.process-cta {
  text-align: center;
}

.process-feedback {
  text-align: center;
  margin-top: 3rem;
}

/* Reviews Section */
.reviews {
  padding: 5rem 0;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.reviews-grid > * {
  flex: 1 1 300px;
  max-width: 500px;
}


.review-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.stars {
  color: #fdc700;
  font-size: 1.125rem;
}

.rating-value {
  color: #61738d;
  font-size: 0.875rem;
}

.review-card blockquote {
  font-style: italic;
  color: #45556c;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.review-card__author {
  border-top: 1px solid #f0f4f9;
  padding-top: 1rem;
}

.author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.author-info strong {
  color: #1d293d;
  font-size: 0.875rem;
}

.author-result {
  text-align: right;
}

.result {
  color: #00bc7c;
  font-weight: 600;
  font-size: 0.875rem;
}

.period {
  color: #61738d;
  font-size: 0.75rem;
  display: block;
}

.author-duration {
  color: #009865;
  font-size: 0.75rem;
}

.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d293d;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  color: #45556c;
  font-size: 0.875rem;
}

/* Contact Section */
.contact {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 5rem 0;
  background: linear-gradient(173deg, #0f172b, #1d293d 50%, #0f172b);
  color: white;
  overflow: hidden;
  margin-bottom: 0;
}

.contact__bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.contact__gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.contact__gradient--1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(90deg, rgba(0, 188, 125, 0.1), rgba(0, 150, 137, 0.1));
  top: 10%;
  left: 5%;
}

.contact__gradient--2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(90deg, rgba(208, 250, 229, 0.05), rgba(203, 251, 241, 0.05));
  bottom: 10%;
  right: 5%;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: left;
}

.contact__info > p {
  color: #cad5e2;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #314158, #45556c);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}


.contact-method__content h4 {
  color: #00d491;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-method__content p {
  color: #e1e8f0;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-method__content small {
  color: #90a1b8;
  font-size: 0.875rem;
}

.contact__form-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact__form-card h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.contact__form-card > p {
  text-align: center;
  color: #cad5e2;
  margin-bottom: 2rem;
}

.consultation-benefits {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.consultation-benefits h4 {
  color: white;
  margin-bottom: 1rem;
}

.consultation-benefits ul {
  list-style: none;
}

.consultation-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #cad5e2;
  font-size: 0.875rem;
}

.consultation-benefits li::before {
  content: '✓';
  color: #00d491;
  font-weight: bold;
}

.contact__cta {
  width: 100%;
  margin-bottom: 1rem;
}

.contact__form-card small {
  display: block;
  text-align: center;
  color: #90a1b8;
  font-size: 0.875rem;
}

/* Footer */
.logo__title--1 {
  color: #ffffff;
}

.footer {
  margin-top: 0;
  background: #0e162b;
  color: white;
  padding: 3rem 0 2rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__links {
  display: flex;
  gap: 3rem;
}

.footer__brand {
  grid-column: span 2;
  max-width: 70%;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__brand p {
  color: #90a1b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #1c283c;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00bc7c;
  transform: translateY(-2px);
}

.footer__column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer__column ul {
  list-style: none;
}

.footer__column li {
  margin-bottom: 0.75rem;
}

.footer__column a {
  color: #90a1b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer__column a:hover {
  color: #00bc7c;
}

.footer__bottom {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #314157;
}

.footer__bottom p {
  color: #90a1b8;
  font-size: 0.875rem;
}


.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-left: 2rem;
}


.footer__legal a {
  color: #90a1b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: #00bc7c;
}

.icon-inst {
  width: 1.8rem;
  filter: brightness(0) invert(1); 
}

.icon-wa {
  width: 1.8rem;
  filter: brightness(0) invert(1); 
}

/* Responsive Styles */

/* Base Container Padding */
.container,
#plans.container,
.contact .container,
.footer .container {
  padding: 0 20px;
}




@media (min-width: 820px) {

  .plans {
  
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

#plans {
  margin-top: 3rem;
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.plan-tab {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e1e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-tab.active {
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  color: white;
  border-color: #00bc7c;
}

.plan-tab:not(.active):hover {
  border-color: #00bc7c;
  color: #00bc7c;
}

.plans-content {
  margin-top: 3rem;
}

.plan-details {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.plans-row {
  display: flex;
  gap: 30px; /* расстояние между колонками */
  align-items: flex-start; /* выравнивание по верхнему краю */
}

.plan-details {
  flex: 1; /* занимает доступное пространство слева */
}

.sample-menu {
  flex: 1; /* занимает доступное пространство справа */
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}


.plan-details[style*="block"] {
  display: grid;
}

.plan-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 25px 50px rgba(0, 188, 124, 0.1);
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-card__calories {
  color: #009865;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.plan-card > p {
  color: #45556c;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.plan-card__price {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d293d;
  padding: 0;
  margin-bottom: 0;
}

.price-1 {
  margin-bottom: 0.5rem !important;
}

.period {
  color: #61738d;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

.plan-card__features h4 {
  margin-bottom: 1rem;
  color: #1d293d;
}

.plan-card__features ul {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #45556c;
}

.plan-card__features li::before {
  content: '✓';
  color: #00bc7c;
  font-weight: bold;
}

.sample-menu {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 25px 50px rgba(0, 188, 124, 0.1);
  max-width: 50%;
}

.sample-menu h4 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1d293d;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: rem;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(90deg, #f8fafc, rgba(236, 253, 245, 0.3));
  border-radius: 12px;
}

.menu-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 188, 124, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.menu-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.menu-item__meal {
  font-size: 0.75rem;
  color: #009865;
  font-weight: 500;
}

.menu-item__calories {
  font-size: 0.75rem;
  color: #61738d;

}

.menu-item__content p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d293d;
  margin: 0;
}

.menu-total {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #e1e8f0;
  color: #1d293d;
}










.calendar {
  background: white;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid #f0f4f9;
  box-shadow: 0 25px 50px rgba(0, 188, 124, 0.1);
  margin-bottom: 1.5rem;

}
.calendar h4 {
  text-align: center;
  margin-bottom: 1rem;
  color: #1d293d;
}
.calendar-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.calendar-scroll::-webkit-scrollbar {
  display: none;
}
.calendar-day {
  flex: 0 0 auto;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: #f8fafc;
  text-align: center;
  font-size: 0.75rem;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
}
.calendar-day.today {
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  color: white;
  font-weight: bold;
  border-color: #00a86b;
}
.calendar-day:hover {
  background: rgba(0, 188, 124, 0.1);
}




/* Highlight selected calendar day */
.calendar-day.selected {
  background: linear-gradient(135deg, #00bc7c, #00a86b);
  color: #fff;
  border-color: #00bc7c;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,188,124,0.15);
}

/* Optional: Arrow button styles */
.calendar-arrow {
  background: #f8fafc;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  margin: 1rem 5px 0;
  transition: background 0.2s;
}


.calendar-arrow:hover {
  background: #00bc7c;
  color: #fff;
}

}

@media (max-width: 870px) {

  .contact__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-method {
    display: flex;
  }
}


/* Large Tablets / Small Desktops (max-width: 1024px) */
@media (max-width: 1028px) {
  .container,
  #plans.container,
  .contact .container,
  .footer .container {
    padding: 0 15px;
  }

  .hero__content,
  .daily-menu__content,
  .plan-details {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* .hero__visual {
    order: -1;
  } */

  .nutrition-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-row {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .sample-menu {
    max-width: 100%;
    margin-top: 2rem;
  }

  .plan-details,
  .sample-menu,
  .plan-card {
    max-width: 100%;
  }

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__brand {
    grid-column: span 2;
    max-width: 100%;
  }

  .food-card__slider {
    height: 250px;
  }

  .hero__gradient--1,
  .hero__gradient--2 {
    width: 200px;
    height: 200px;
  }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .plan-tab:last-child {
    width: 16rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    text-align: center;
    padding-top: 100px;
  }

  .hero__visual {
    display: none;
  }

  .hero__stats,
  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .meal-schedule {
    gap: 1rem;
  }

  .meal-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .meal-item__header {
    flex-direction: column;
    gap: 0.25rem;
  }

  .features-grid,
  .nutrition-grid,
  .process-steps,
  .reviews-grid,
  .footer__content {
    grid-template-columns: 1fr;
  }

  .reviews-stats,
  .footer__bottom,
  .footer__legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .plan-card,
  .sample-menu {
    padding: 1rem;
    border-radius: 12px;
    box-shadow: none;
  }

  .plan-tabs {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .plan-tab {
    width: 100%;
    max-width: 220px;
    font-size: 1rem;
  }

  .header__cta {
    display: none;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .food-card__slider {
    height: 200px;
  }

  .food-card__features {
    flex-direction: column;
    gap: 1rem;
  }

  .food-card__nav {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .calendar-scroll {
    justify-content: flex-start;
  }

  .calendar-day {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }

  .nutrition-card,
  .process-step,
  .review-card {
    padding: 1.5rem;
  }

  .contact__info h2 {
    font-size: 1.75rem;
  }

  .contact-method__icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer__legal {
    margin: 0;
  }
}


@media (max-width: 420px) {
  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .buttons a {
    width: 100%;
    max-width: 300px;
  }
  .buttons button {
    width: 100%;
  }
  .btn-sert {
  margin-left: 0;
}

}










/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.reveal-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.reveal-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.reveal-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Stagger for children in sections/grids */
.section > .animate-on-scroll:nth-child(1),
.grid > .animate-on-scroll:nth-child(1),
.card > .animate-on-scroll:nth-child(1) {
  animation-delay: 0.1s;
}

.section > .animate-on-scroll:nth-child(2),
.grid > .animate-on-scroll:nth-child(2),
.card > .animate-on-scroll:nth-child(2) {
  animation-delay: 0.2s;
}

.section > .animate-on-scroll:nth-child(3),
.grid > .animate-on-scroll:nth-child(3),
.card > .animate-on-scroll:nth-child(3) {
  animation-delay: 0.3s;
}

.section > .animate-on-scroll:nth-child(4),
.grid > .animate-on-scroll:nth-child(4),
.card > .animate-on-scroll:nth-child(4) {
  animation-delay: 0.4s;
}

/* On load animation for body/header */
body {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header {
  animation: slideDown 0.5s ease-out forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



.contact-method {
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-8px);
}







