/* ===================================================================
   МойОбед40 — Modern Landing Styles
   Warm light theme with orange brand accent
   =================================================================== */

/* --- CSS Custom Properties --- */
:root {
  /* Brand Colors */
  --primary: #f76707;
  --primary-dark: #e85d04;
  --primary-light: #fff4e6;
  --primary-lighter: #fff9f0;
  --primary-glow: rgba(247, 103, 7, 0.15);

  /* Neutrals */
  --white: #ffffff;
  --bg: #fafaf8;
  --bg-alt: #f5f3ef;
  --surface: #ffffff;
  --border: #e8e5e0;
  --border-light: #f0ede8;

  /* Text */
  --text: #1a1a1a;
  --text-secondary: #5c5c5c;
  --text-muted: #8a8a8a;

  /* Semantic */
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --success-border: #bbf7d0;

  /* Layout */
  --container: 1200px;
  --header-height: 72px;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.05);
  --shadow-primary: 0 8px 24px rgba(247, 103, 7, 0.3);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.25s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 16px;
}

/* --- Container --- */
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  transition: opacity var(--duration) var(--ease);
}

.top-bar a:hover {
  opacity: 0.85;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--duration) var(--ease);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo img {
  width: 38px;
  height: 38px;
}

/* --- Burger --- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 20;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Nav close button (hidden on desktop, visible on mobile) --- */
.nav-close-btn {
  display: none;
}

/* --- Main Nav --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.header-actions {
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}

.btn svg {
  flex-shrink: 0;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247, 103, 7, 0.35);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lighter);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* --- Badge / Eyebrow --- */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* --- Section Basics --- */
.section {
  padding: 80px 0;
  scroll-margin-top: calc(var(--header-height) + 40px);
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  padding: 48px 0 0;
  background: linear-gradient(180deg, var(--primary-lighter) 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 0;
}

.hero-subtitle strong {
  color: var(--primary);
  font-weight: 700;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Hero Media */
.hero-media .media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid var(--border-light);
}

.hero-video,
.video-fallback {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  /* Slight zoom to crop watermark at edges */
  transform: scale(1.08);
  transform-origin: center center;
}

/* Hero image (static pages like Obninsk) */
.media-frame>img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* ===================================================================
   STATS
   =================================================================== */
.stats-section {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.stat-card {
  text-align: center;
  padding: 24px 16px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 2px;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===================================================================
   ADVANTAGES
   =================================================================== */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--duration) var(--ease);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-glow);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--primary);
}

.advantage-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.advantage-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===================================================================
   STEPS (HOW IT WORKS)
   =================================================================== */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  flex: 1;
  min-width: 0;
  transition: all var(--duration) var(--ease);
}

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

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--primary);
  flex-shrink: 0;
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.step-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===================================================================
   TABS & MENU
   =================================================================== */
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  margin-bottom: 32px;
}

.tab-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--duration) var(--ease);
}

.tab-btn:hover {
  color: var(--text);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

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

.menu-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

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

.menu-card-img {
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 20px;
}

.menu-card-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.menu-card-body p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.menu-cta {
  margin-top: 32px;
  text-align: center;
}

.menu-panel {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 103, 7, 0.14);
  background:
    radial-gradient(circle at top right, rgba(247, 103, 7, 0.14), transparent 32%),
    linear-gradient(135deg, #fff8f0 0%, #ffffff 58%);
  box-shadow: var(--shadow-sm);
}

.menu-panel-label,
.menu-cycle-tag,
.menu-sheet-day {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-panel p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.menu-panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-content: flex-start;
}

.menu-panel-chips span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(247, 103, 7, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-cycle-stack {
  display: grid;
  gap: 24px;
}

.menu-cycle-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.menu-cycle-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.menu-cycle-head h3 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 1.375rem;
}

.menu-cycle-head p {
  max-width: 720px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.menu-cycle-price {
  flex-shrink: 0;
  min-width: 152px;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 103, 7, 0.16);
  background: var(--primary-lighter);
  text-align: right;
}

.menu-cycle-price strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.875rem;
  line-height: 1;
}

.menu-cycle-price span {
  display: block;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.menu-cycle-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.menu-day-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.menu-day-card-head h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.menu-day-card-head span {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.menu-day-list {
  display: grid;
  gap: 12px;
}

.menu-day-row {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.menu-day-row:first-child {
  padding-top: 0;
  border-top: none;
}

.menu-day-row span {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-day-row strong {
  font-size: 0.9375rem;
  line-height: 1.45;
}

.menu-day-foot,
.menu-panel-footnote {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.menu-day-foot {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed rgba(26, 26, 26, 0.12);
}

.menu-panel-footnote {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(247, 103, 7, 0.08);
}

.menu-sheet-stack {
  display: grid;
  gap: 18px;
}

.menu-sheet {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.menu-sheet[open] {
  border-color: rgba(247, 103, 7, 0.18);
  box-shadow: var(--shadow);
}

.menu-sheet summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.menu-sheet summary::-webkit-details-marker {
  display: none;
}

.menu-sheet-heading {
  display: grid;
  gap: 8px;
}

.menu-sheet-heading h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

.menu-sheet-heading p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.menu-sheet-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.menu-sheet-range {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-sheet-chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform var(--duration) var(--ease);
}

.menu-sheet[open] .menu-sheet-chevron {
  transform: rotate(225deg);
}

.menu-sheet-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 28px 28px;
}

.menu-sheet-section {
  padding: 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}

.menu-sheet-section h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.menu-item-list {
  display: grid;
  gap: 10px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(26, 26, 26, 0.12);
}

.menu-item:first-child {
  padding-top: 0;
  border-top: none;
}

.menu-item-name {
  font-weight: 600;
  line-height: 1.45;
}

.menu-item-portion {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.menu-item-price {
  color: var(--primary-dark);
  font-size: 0.9375rem;
  white-space: nowrap;
}

.menu-extended-note {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===================================================================
   SERVICES
   =================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

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

.service-card-img {
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-card-body p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: gap var(--duration) var(--ease);
}

.link-arrow:hover {
  gap: 8px;
}

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner {
  padding: 64px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-xl);
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-content p {
  opacity: 0.9;
  font-size: 1.0625rem;
  max-width: 50ch;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--duration) var(--ease);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item[open] {
  border-color: var(--primary-glow);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  content: '';
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--duration) var(--ease);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.9375rem;
}

/* ===================================================================
   CONTACTS
   =================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}

.contact-card-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-glow);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: var(--radius-xs);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9375rem;
}

.contact-value-secondary {
  display: block;
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 2px;
}

/* --- Lead Form --- */
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg);
  color: var(--text);
  padding: 12px 14px;
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.full-width {
  grid-column: 1 / -1;
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-xs);
  color: var(--success);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 16px;
}

.form-success.show {
  display: flex;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 40ch;
}

.footer-nav h4,
.footer-contacts h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

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

.footer-nav a {
  font-size: 0.9375rem;
  transition: color var(--duration) var(--ease);
}

.footer-nav a:hover {
  color: var(--white);
}

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

.footer-contacts a,
.footer-contacts span {
  font-size: 0.9375rem;
}

.footer-contacts a {
  transition: color var(--duration) var(--ease);
}

.footer-contacts a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8125rem;
}

/* ===================================================================
   MOBILE STICKY BAR
   =================================================================== */
.mobile-sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}

.mobile-sticky-bar .btn {
  flex: 1;
  padding: 12px 8px;
  font-size: 0.875rem;
}

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-media {
    order: -1;
  }

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

  .menu-panel,
  .menu-cycle-head {
    flex-direction: column;
  }

  .menu-panel-chips {
    justify-content: flex-start;
  }

  .menu-cycle-price {
    text-align: left;
  }

  .menu-cycle-days {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-sheet-body {
    grid-template-columns: 1fr;
  }

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

  .steps-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .step-arrow {
    display: none;
  }

  .step-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 200px;
  }

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

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar-inner span:first-child {
    display: none;
  }

  .burger {
    display: flex;
  }

  /* --- Mobile Side Panel ---
     Nav is moved to <body> via JS to escape header's containing block.
     Panel sits ABOVE everything (z-index 200) and has its own close button. */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 80vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  /* Close button inside nav panel */
  .nav-close-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 12px 16px 12px 20px;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
    border: none;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
  }

  .nav-close-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
  }

  .nav-close-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text);
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-close-btn:hover .nav-close-icon,
  .nav-close-btn:active .nav-close-icon {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
  }

  .main-nav a {
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease, color 0.2s ease;
    white-space: normal;
  }

  .main-nav a:hover,
  .main-nav a:active {
    background: var(--primary-light);
    color: var(--primary);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .header-actions {
    display: none;
  }

  .menu-panel,
  .menu-cycle-card,
  .menu-sheet summary,
  .menu-sheet-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-sheet summary,
  .menu-sheet-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-sheet-meta {
    gap: 12px;
  }

  .menu-sheet-range {
    white-space: normal;
  }

  .menu-cycle-days {
    grid-template-columns: 1fr;
  }

  /* --- Header compact on mobile --- */
  .header-inner {
    min-height: 56px;
    gap: 12px;
  }

  .logo img {
    width: 32px;
    height: 32px;
  }

  .logo {
    font-size: 1rem;
  }

  /* --- Hero --- */
  .hero {
    padding-top: 20px;
  }

  .hero-copy h1 {
    font-size: 1.625rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* --- Sections --- */
  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-head h2 {
    font-size: 1.5rem;
  }

  .section-desc {
    font-size: 0.9375rem;
  }

  .advantages-grid,
  .menu-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    padding: 24px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 16px 12px;
  }

  .step-card {
    flex: 1 1 100%;
  }

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

  .lead-form {
    padding: 20px 16px;
  }

  .form-title {
    font-size: 1.125rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 32px;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 76px;
  }

  .cta-card {
    padding: 24px 16px;
  }

  .cta-content h2 {
    font-size: 1.25rem;
  }

  .cta-content p {
    font-size: 0.9375rem;
  }

  /* FAQ compact */
  .faq-item summary {
    padding: 16px 16px;
    font-size: 0.9375rem;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 16px 16px;
  }

  /* Contact cards */
  .contact-card-item {
    padding: 16px;
  }

  /* Tabs */
  .tabs {
    width: 100%;
    justify-content: stretch;
  }

  .tab-btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.875rem;
    text-align: center;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }

  /* Prose */
  .prose {
    font-size: 0.9375rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

  .container {
    width: calc(100% - 1.5rem);
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .menu-item-portion,
  .menu-item-price {
    justify-self: start;
  }
}

/* --- Accessibility: Reduced motion --- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --- Nav overlay backdrop --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  -webkit-overflow-scrolling: auto;
}

/* Hide bottom bar when menu is open */
body.menu-open .mobile-sticky-bar {
  display: none !important;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb span[aria-hidden] {
  color: var(--border);
}

/* --- Prose / Content blocks --- */
.content-block {
  max-width: 800px;
}

.prose {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.prose p {
  margin-bottom: 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}
