:root {
  --green: #2ecc71;
  --green-dark: #1a9c54;
  --green-light: #d5f5e3;
  --violet: #8e44ad;
  --violet-dark: #6c2d87;
  --violet-light: #ebdef0;
  --gradient: linear-gradient(135deg, var(--green), var(--violet));
  --gradient-reverse: linear-gradient(135deg, var(--violet), var(--green));
  --bg: #fafafa;
  --bg-alt: #f0f4f0;
  --text: #2c2c2c;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
  --font-main: 'Nunito', sans-serif;
  --font-accent: 'Comfortaa', cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* SVG ICON SYSTEM */
.ico {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}

.ico--sm {
  width: 22px;
  height: 22px;
}

.ico--btn {
  width: 20px;
  height: 20px;
}

.ico--btn-white {
  filter: brightness(0) invert(1);
}

.ico--benefit {
  width: 56px;
  height: 56px;
}

.ico--menu {
  width: 56px;
  height: 56px;
}

.ico--check {
  width: 22px;
  height: 22px;
}

.ico--star {
  width: 22px;
  height: 22px;
}

.ico--case {
  width: 56px;
  height: 56px;
}

.ico--contact {
  width: 40px;
  height: 40px;
}

.ico--list {
  width: 22px;
  height: 22px;
  margin-right: 4px;
  flex-shrink: 0;
}

.ico--fire {
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

.ico--float {
  width: 100%;
  height: 100%;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 204, 113, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}

.btn--outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--violet-dark);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--violet-dark);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn--block {
  width: 100%;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 50px;
  width: auto;
}

.header__nav-list {
  display: flex;
  gap: 20px;
}

.header__nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__phone {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.header__phone:hover {
  color: var(--violet);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--bg) 50%, var(--violet-light) 100%);
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape--1 {
  width: 400px;
  height: 400px;
  background: var(--green);
  top: -100px;
  right: -100px;
  animation: pulse 8s infinite;
}

.shape--2 {
  width: 300px;
  height: 300px;
  background: var(--violet);
  bottom: -50px;
  left: -50px;
  animation: pulse 6s infinite 2s;
}

.shape--3 {
  width: 200px;
  height: 200px;
  background: var(--gradient);
  top: 50%;
  left: 50%;
  animation: float 10s infinite;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-accent);
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 32px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__plate {
  position: relative;
  width: 380px;
  height: 380px;
}

.hero__plate-svg {
  width: 100%;
  height: 100%;
  animation: pulse 4s infinite;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.hero__float {
  position: absolute;
  width: 56px;
  height: 56px;
  animation: float 3s infinite;
}

.hero__float--1 {
  top: -10px;
  left: 20px;
  animation-delay: 0s;
}

.hero__float--2 {
  top: 20px;
  right: -10px;
  animation-delay: 0.5s;
}

.hero__float--3 {
  bottom: 20px;
  left: -20px;
  animation-delay: 1s;
}

.hero__float--4 {
  bottom: -10px;
  right: 20px;
  animation-delay: 1.5s;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-light);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.mouse__wheel {
  width: 4px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
  animation: scrollWheel 1.5s infinite;
}

/* SECTION COMMON */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* BENEFITS */
.benefits {
  padding: 100px 0;
  background: var(--white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--bg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.benefit-card__icon {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__title {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ABOUT */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--bg) 50%, var(--green-light) 100%);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image-block {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about__svg-large {
  width: 80%;
  height: 80%;
}

.about__badge-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: var(--shadow);
  color: var(--violet);
}

.about__text {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.about__feature-icon {
  display: flex;
  align-items: center;
}

/* MENU */
.menu {
  padding: 100px 0;
  background: var(--white);
}

/* MENU TABS */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--bg-alt);
  background: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.menu-tab:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.menu-tab.active {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: var(--transition);
  border: 2px solid transparent;
  align-items: flex-start;
}

.menu-card.hidden {
  display: none;
}

.menu-card:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.menu-card__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card__title {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.menu-card__desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.menu-card__price {
  display: inline-block;
  padding: 4px 14px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}

.menu-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
}

.menu-card__tag--hit {
  background: linear-gradient(135deg, #fff3cd, #ffeeba);
  color: #d68910;
}

/* MENU CTA */
.menu__cta {
  margin-top: 48px;
  text-align: center;
  padding: 36px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--violet-light) 100%);
  border-radius: var(--radius);
  border: 2px solid var(--green);
}

.menu__cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.menu__cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* LUNCH OF THE DAY */
.lunch {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--bg) 50%, var(--violet-light) 100%);
}

.lunch__card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  align-items: center;
  border: 2px solid var(--green);
  position: relative;
  overflow: hidden;
}

.lunch__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.lunch__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.lunch__icon {
  width: 180px;
  height: 180px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}

.lunch__price-circle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  background: var(--gradient);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.3);
  animation: pulse 3s infinite;
}

.lunch__price-amount {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.lunch__price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.9;
}

.lunch__content {
  display: flex;
  flex-direction: column;
}

.lunch__title {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.lunch__features {
  list-style: none;
  margin-bottom: 28px;
}

.lunch__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-alt);
}

.lunch__features li:last-child {
  border-bottom: none;
}

.lunch__features li .ico--list {
  margin-top: 2px;
  width: 28px;
  height: 28px;
}

.lunch__features li div {
  display: flex;
  flex-direction: column;
}

.lunch__features li strong {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}

.lunch__features li span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.lunch__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.lunch__note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* DELIVERY */
.delivery {
  padding: 100px 0;
  background: var(--white);
}

.delivery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.delivery-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.delivery-card--main {
  border: 2px solid var(--green);
  background: linear-gradient(135deg, var(--green-light) 0%, var(--white) 100%);
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.delivery-card__icon {
  margin-bottom: 16px;
  display: flex;
}

.delivery-card__title {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.delivery-card__text {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.delivery-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.delivery-card__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.delivery__platforms {
  display: flex;
  flex-direction: column;
}

.delivery__platforms-title {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.delivery__platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: default;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.platform-card__logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.platform-card__logo--glovo {
  background: linear-gradient(135deg, #f9a825, #ff8f00);
}

.platform-card__logo--uber {
  background: linear-gradient(135deg, #142328, #276749);
}

.platform-card__logo--bolt {
  background: linear-gradient(135deg, #34d186, #24a56a);
}

.platform-card__logo--pyszne {
  background: linear-gradient(135deg, #ff8000, #e65c00);
}

.platform-card__logo--wolt {
  background: linear-gradient(135deg, #009de0, #0078b5);
}

.platform-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

.delivery__platforms-note {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* REVIEWS */
.reviews {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--bg) 100%);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  border: 1px solid transparent;
  box-shadow: var(--shadow);
}

.review-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--violet);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-card__text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.review-card__name {
  font-weight: 700;
}

.review-card__role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* CASES */
.cases {
  padding: 100px 0;
  background: var(--white);
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.case-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-card__icon {
  margin-bottom: 16px;
  display: flex;
}

.case-card__title {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.case-card__problem,
.case-card__solution,
.case-card__result {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--bg-alt);
}

.case-card__result {
  border-bottom: none;
  color: var(--green-dark);
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--bg) 50%, var(--violet-light) 100%);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--bg-alt);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.faq-item:hover {
  border-color: var(--green);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}

.faq-item__question:hover {
  background: var(--green-light);
}

.faq-item__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--green);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  color: var(--violet);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

/* CONTACTS */
.contacts {
  padding: 100px 0;
  background: var(--white);
}

.contacts__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(8px);
}

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-card__link {
  font-weight: 600;
  color: var(--green-dark);
}

.contact-card__link:hover {
  color: var(--violet);
}

.contact-form {
  background: var(--bg);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.contact-form__title {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-form__group {
  margin-bottom: 16px;
}

.contact-form__input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--bg-alt);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
  background: var(--white);
}

.contact-form__input:focus {
  border-color: var(--green);
  background: var(--white);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

/* CTA */
.cta {
  padding: 80px 0;
  background: var(--gradient);
}

.cta__inner {
  text-align: center;
  color: var(--white);
}

.cta__title {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta__text {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.cta__platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta__platforms-label {
  font-size: 0.95rem;
  opacity: 0.8;
}

.cta__platforms-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta__platform {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.cta__platform:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* FOOTER */
.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.5);
}

.footer__desc {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer__address {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.5;
}

.footer__heading {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__heading--mt {
  margin-top: 20px;
}

.footer__links ul li,
.footer__contact ul li,
.footer__hours ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--green);
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .benefits__grid,
  .menu__grid,
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header__nav-list {
    gap: 14px;
  }

  .header__nav-link {
    font-size: 0.85rem;
  }

  .lunch__card {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .lunch__visual {
    flex-direction: row;
    justify-content: center;
  }

  .lunch__icon {
    width: 120px;
    height: 120px;
  }

  .lunch__price-circle {
    width: 100px;
    height: 100px;
  }

  .lunch__price-amount {
    font-size: 2.5rem;
  }

  .delivery__grid {
    grid-template-columns: 1fr;
  }

  .delivery__platform-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: var(--transition);
    z-index: 999;
  }

  .header__nav.active {
    transform: translateY(0);
  }

  .header__nav-list {
    flex-direction: column;
    gap: 16px;
  }

  .header__phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    margin: 0 auto 28px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__plate {
    width: 280px;
    height: 280px;
  }

  .hero__float {
    width: 44px;
    height: 44px;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__image-block {
    max-width: 300px;
  }

  .benefits__grid,
  .menu__grid,
  .reviews__grid,
  .cases__grid {
    grid-template-columns: 1fr;
  }

  .contacts__inner {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .cta__title {
    font-size: 1.8rem;
  }

  .lunch__card {
    padding: 28px;
  }

  .lunch__visual {
    flex-direction: column;
  }

  .lunch__actions {
    flex-direction: column;
  }

  .delivery__platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .delivery-card__details {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    gap: 6px;
  }

  .menu-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .menu-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .menu-card__icon-wrap {
    margin-bottom: 0;
  }

  .menu-card__tags {
    justify-content: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .delivery__platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lunch__price-circle {
    width: 90px;
    height: 90px;
  }

  .lunch__price-amount {
    font-size: 2rem;
  }

  .lunch__icon {
    width: 100px;
    height: 100px;
  }

  .menu-tabs {
    gap: 4px;
  }

  .menu-tab {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}