:root {
    --bg-deep:   #101010;
    --bg-dark:   #141414;
    --bg-card:   #1a1a1a;
    --bg-glass:  rgba(26,26,26,0.85);
    --orange:    #FF4E01;
    --orange2:   #FF621E;
    --orange-glow: rgba(255,78,1,0.35);
    --white:     #ffffff;
    --offwhite:  #f0ece6;
    --muted:     rgba(255,255,255,0.45);
    --border:    rgba(255,255,255,0.08);
    --border-o:  rgba(255,78,1,0.25);
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Rubik', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
  }
  body {
    background: var(--bg-deep);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
  }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--bg-deep); }
  ::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 100px 0; }

  .section-label {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-head);
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 18px;
  }
  .section-sub { font-size: 17px; color: var(--muted); font-weight: 300; line-height: 1.7; }
  .hl { color: var(--orange); }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; border-radius: 6px;
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    letter-spacing: 0.5px; text-decoration: none; cursor: pointer;
    transition: all 0.25s ease; border: none; position: relative; overflow: hidden;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff;
    box-shadow: 0 4px 24px var(--orange-glow);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px var(--orange-glow); filter: brightness(1.1); }
  .btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,78,1,0.07); transform: translateY(-2px); }

  .reveal { opacity: 0; transform: translateY(36px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }
  .reveal-delay-5 { transition-delay: .5s; }
  .reveal-delay-6 { transition-delay: .6s; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    padding: 20px 0; transition: all .35s;
  }
  nav.scrolled {
    background: rgba(16,16,16,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; }
  .logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; font-family: var(--font-head);
    font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: -.5px;
  }
  .logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    border-radius: 7px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; box-shadow: 0 0 18px var(--orange-glow);
  }
  .logo-img { height: 22px; width: auto; display: block; object-fit: contain; }
  .nav-links { display: flex; gap: 30px; list-style: none; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { display: flex; gap: 10px; }
  .nav-cta .btn { padding: 10px 20px; font-size: 13px; }
  .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 80px;
    background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255,78,1,0.12) 0%, transparent 60%), var(--bg-deep);
  }
  #hero-canvas { position: absolute; inset: 0; z-index: 0; }
  .hero-grid-lines {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  }
  .hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; width: 100%;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,78,1,0.1); border: 1px solid rgba(255,78,1,0.3);
    border-radius: 100px; padding: 6px 16px;
    font-size: 12px; font-weight: 500; color: var(--orange); margin-bottom: 24px;
  }
  .badge-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: blink 1.5s ease infinite; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

  .hero-title {
    font-family: var(--font-head); font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 900; line-height: 1.07; margin-bottom: 22px;
  }
  .hero-title em { color: var(--orange); font-style: normal; }
  .hero-sub { font-size: 18px; color: var(--muted); font-weight: 300; margin-bottom: 38px; line-height: 1.7; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

  .hero-numbers { display: flex; gap: 36px; }
  .hero-num-item { border-left: 2px solid var(--orange); padding-left: 16px; }
  .hero-num { font-family: var(--font-head); font-size: 28px; font-weight: 900; line-height: 1; }
  .hero-num-label { font-size: 12px; color: var(--muted); margin-top: 3px; }

  /* Fridge visual */
  .hero-visual { display: flex; justify-content: center; position: relative; }
  .hero-img-wrap {
    position: relative; width: 100%; max-width: 440px;
  }
  .hero-img-main {
    width: 100%; border-radius: 16px;
    filter: drop-shadow(0 0 40px rgba(255,78,1,0.3));
  }
  .hero-img-glow {
    position: absolute; inset: -20px;
    background: radial-gradient(circle, rgba(255,78,1,0.15) 0%, transparent 65%);
    border-radius: 50%; z-index: -1;
    animation: pulse-g 3s ease-in-out infinite;
  }
  @keyframes pulse-g { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.08);opacity:1} }
  .ftag {
    position: absolute;
    background: rgba(20,20,20,0.92);
    border: 1px solid rgba(255,78,1,0.3);
    border-radius: 10px; padding: 10px 16px;
    font-size: 13px; font-weight: 600; backdrop-filter: blur(10px);
    white-space: nowrap; animation: float-t 4s ease-in-out infinite;
  }
  .ftag-1 { top: 12%; right: -20px; color: #4ade80; border-color: rgba(74,222,128,.3); }
  .ftag-2 { bottom: 28%; left: -20px; color: var(--orange); animation-delay: 1.4s; }
  .ftag-3 { bottom: 10%; right: -10px; color: var(--white); animation-delay: .7s; }
  @keyframes float-t { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

  /* ── FOOD GALLERY ── */
  #gallery { background: var(--bg-dark); padding: 80px 0; overflow: hidden; }
  .gallery-label { text-align: center; margin-bottom: 36px; }
  .gallery-track-wrap { overflow: hidden; position: relative; }
  .gallery-track-wrap::before, .gallery-track-wrap::after {
    content:''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
    pointer-events: none;
  }
  .gallery-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-dark), transparent); }
  .gallery-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-dark), transparent); }
  .gallery-track {
    display: flex; gap: 16px;
    animation: scroll-gallery 40s linear infinite;
    width: max-content;
  }
  .gallery-track:hover { animation-play-state: paused; }
  @keyframes scroll-gallery { from{transform:translateX(0)} to{transform:translateX(-50%)} }
  .gallery-img {
    width: 220px; height: 180px; object-fit: cover;
    border-radius: 12px; flex-shrink: 0;
    border: 1px solid var(--border);
    transition: all .3s;
  }
  .gallery-img:hover { transform: scale(1.05); border-color: var(--orange); box-shadow: 0 0 24px var(--orange-glow); }

  /* ── PROBLEM/SOLUTION ── */
  #problem { background: var(--bg-deep); }
  .ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .prob-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
  .prob-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,60,60,0.15);
    border-radius: 10px;
  }
  .prob-ico { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .prob-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 3px; }
  .prob-item p { color: var(--muted); font-size: 13px; }

  .sol-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
  .sol-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255,78,1,0.05);
    border: 1px solid var(--border-o);
    border-radius: 10px; transition: all .3s;
  }
  .sol-item:hover { background: rgba(255,78,1,0.09); border-color: rgba(255,78,1,0.45); transform: translateX(4px); }
  .sol-ico { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .sol-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 3px; }
  .sol-item p { color: var(--muted); font-size: 13px; }

  /* ── HOW IT WORKS ── */
  #how { background: var(--bg-dark); }
  .how-header { text-align: center; margin-bottom: 64px; }
  .how-header .section-sub { margin: 0 auto; }
  .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
  .steps::before {
    content:''; position: absolute; top: 52px;
    left: calc(16.66% + 16px); right: calc(16.66% + 16px);
    height: 2px; background: linear-gradient(90deg, var(--orange), var(--orange2));
    z-index: 0;
  }
  .step { text-align: center; padding: 0 28px; position: relative; z-index: 1; }
  .step-circle {
    width: 104px; height: 104px; border-radius: 50%;
    background: var(--bg-card); border: 2px solid rgba(255,78,1,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 40px; margin: 0 auto 24px; position: relative; transition: all .35s;
  }
  .step:hover .step-circle { border-color: var(--orange); box-shadow: 0 0 32px var(--orange-glow); transform: scale(1.05); }
  .step-n {
    position: absolute; top: -8px; right: -8px;
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    font-family: var(--font-head); font-size: 12px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
  }
  .step h3 { font-family: var(--font-head); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
  .step p { color: var(--muted); font-size: 14px; }

  /* ── HOW INTERACTIVE ── */
  .how-interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  .how-steps-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .how-step-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
  }
  .how-step-item:hover {
    background: rgba(255,78,1,0.05);
    border-color: rgba(255,78,1,0.2);
  }
  .how-step-item.active {
    background: rgba(255,78,1,0.08);
    border-color: rgba(255,78,1,0.35);
    box-shadow: 0 4px 20px rgba(255,78,1,0.1);
  }
  .how-step-num {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    min-width: 36px;
    transition: color .3s;
    line-height: 1;
  }
  .how-step-item.active .how-step-num,
  .how-step-item:hover .how-step-num { color: var(--orange); }
  .how-step-content { flex: 1; }
  .how-step-content h4 {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
    color: rgba(255,255,255,0.6);
    transition: color .3s;
  }
  .how-step-item.active .how-step-content h4,
  .how-step-item:hover .how-step-content h4 { color: var(--white); }
  .how-step-content p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    display: none;
  }
  .how-step-item.active .how-step-content p { display: block; }
  .how-step-arrow {
    color: rgba(255,78,1,0);
    font-size: 18px;
    transition: all .3s;
    font-weight: 300;
  }
  .how-step-item.active .how-step-arrow,
  .how-step-item:hover .how-step-arrow { color: var(--orange); transform: translateX(4px); }

  /* Banner */
  .how-banner-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px var(--border);
    background: #000;
    height: 460px;
  }
  .how-banner-track { position: relative; width: 100%; height: 100%; }
  .how-banner {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .how-banner.active { opacity: 1; pointer-events: auto; }
  .how-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .6s ease;
  }
  .how-banner.active img { transform: scale(1.01); }
  .how-banner-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 28px 24px;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  }
  .how-banner-tag {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
  }
  .how-banner-title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 4px;
    color: #fff;
  }
  .how-banner-sub { font-size: 13px; color: rgba(255,255,255,.65); }

  /* Dots */
  .how-dots {
    position: absolute;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px; z-index: 10;
  }
  .how-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer; transition: all .3s;
    border: none;
  }
  .how-dot.active { background: var(--orange); width: 24px; border-radius: 4px; box-shadow: 0 0 8px var(--orange); }

  /* Nav arrows */
  .how-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(16,16,16,.7); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s; z-index: 10; backdrop-filter: blur(6px);
    line-height: 1;
  }
  .how-nav:hover { background: var(--orange); border-color: var(--orange); }
  .how-prev { left: 12px; }
  .how-next { right: 12px; }

  @media (max-width: 768px) {
    .how-interactive { grid-template-columns: 1fr; }
    .how-banner-wrap { aspect-ratio: 16/10; }
    .how-step-content p { display: none !important; }
    .how-step-item.active .how-step-content p { display: block !important; }
  }

  /* ── FEATURES ── */
  #features { background: var(--bg-deep); }
  .feat-header { text-align: center; margin-bottom: 56px; }
  .feat-header .section-sub { margin: 0 auto; }
  .feat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
  .feat-card {
    background: var(--bg-glass); border: 1px solid var(--border);
    border-radius: 14px; padding: 28px; backdrop-filter: blur(16px);
    transition: all .35s; position: relative; overflow: hidden;
  }
  .feat-card::after {
    content:''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    transform: scaleX(0); transform-origin: left; transition: transform .35s;
  }
  .feat-card:hover::after { transform: scaleX(1); }
  .feat-card:hover { border-color: rgba(255,78,1,0.25); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 30px var(--orange-glow); }
  .feat-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: rgba(255,78,1,0.1); border: 1px solid rgba(255,78,1,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 18px;
  }
  .feat-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
  .feat-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

  /* ── LOCATIONS ── */
  #locations { background: var(--bg-dark); }
  .loc-header { text-align: center; margin-bottom: 52px; }
  .loc-header .section-sub { margin: 0 auto; }
  .loc-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
  .loc-card {
    background: var(--bg-glass); border: 1px solid var(--border); border-radius: 14px;
    padding: 26px 12px; text-align: center; backdrop-filter: blur(10px); transition: all .3s; cursor: default;
  }
  .loc-card:hover { border-color: rgba(255,78,1,0.4); background: rgba(255,78,1,0.07); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.4); }
  .loc-ico { font-size: 38px; margin-bottom: 12px; display: block; }
  .loc-card h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; line-height: 1.4; }

  /* ── COOPERATION ── */
  #cooperation { background: var(--bg-deep); }
  .coop-header { text-align: center; margin-bottom: 56px; }
  .coop-header .section-sub { margin: 0 auto; }
  .coop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
  .coop-card {
    background: var(--bg-glass); border: 1px solid var(--border);
    border-radius: 18px; padding: 38px; backdrop-filter: blur(16px);
    transition: all .35s; position: relative; overflow: hidden;
  }
  .coop-card.hot {
    border-color: rgba(255,78,1,0.3);
    background: rgba(255,78,1,0.05);
  }
  .coop-card.hot::before {
    content: 'ПОПУЛЯРНИЙ';
    position: absolute; top: 18px; right: -30px;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: #fff; font-family: var(--font-head); font-size: 9px;
    font-weight: 900; letter-spacing: 2px; padding: 5px 40px;
    transform: rotate(45deg);
  }
  .coop-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(0,0,0,.5), 0 0 30px var(--orange-glow); }
  .coop-ico {
    width: 60px; height: 60px; border-radius: 14px;
    background: rgba(255,78,1,0.12); border: 1px solid rgba(255,78,1,0.25);
    display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 22px;
  }
  .coop-card h3 { font-family: var(--font-head); font-size: 24px; font-weight: 900; margin-bottom: 6px; }
  .coop-tag { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
  .coop-list { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 11px; }
  .coop-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
  .chk {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(255,78,1,0.15); color: var(--orange);
    display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 3px;
  }

  /* ── CALCULATOR ── */
  #calculator { background: var(--bg-dark); }
  .calc-header { text-align: center; margin-bottom: 56px; }
  .calc-header .section-sub { margin: 0 auto; }
  .calc-box {
    max-width: 960px; margin: 0 auto;
    background: var(--bg-glass); border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden; backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(255,78,1,0.08);
  }
  .calc-top { display: grid; grid-template-columns: 1fr 1fr; }
  .calc-in { padding: 44px; border-right: 1px solid var(--border); }
  .calc-out { padding: 44px; }
  .presets { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
  .preset {
    padding: 7px 15px; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border); border-radius: 100px;
    color: var(--muted); font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all .2s; font-family: var(--font-body);
  }
  .preset:hover, .preset.on { background: rgba(255,78,1,0.12); border-color: var(--orange); color: var(--orange); }
  .cg { margin-bottom: 26px; }
  .cg label {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px; font-size: 14px; font-weight: 500;
  }
  .cg label span { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--orange); }
  .cslider {
    -webkit-appearance: none; width: 100%; height: 5px; border-radius: 3px;
    background: rgba(255,78,1,0.12); outline: none; cursor: pointer;
  }
  .cslider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    box-shadow: 0 0 10px var(--orange-glow); cursor: pointer; transition: transform .2s;
  }
  .cslider::-webkit-slider-thumb:hover { transform: scale(1.2); }
  .loc-sel {
    width: 100%; background: rgba(255,78,1,0.04); border: 1px solid var(--border);
    border-radius: 9px; padding: 11px 14px; color: var(--white);
    font-family: var(--font-body); font-size: 14px; outline: none; cursor: pointer; appearance: none;
    transition: all .2s;
  }
  .loc-sel:focus { border-color: var(--orange); box-shadow: 0 0 16px var(--orange-glow); }
  .loc-sel option { background: var(--bg-card); }
  .sel-wrap { position: relative; }
  .sel-arr { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

  .out-title { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
  .out-grid { display: flex; flex-direction: column; gap: 16px; }
  .out-item {
    padding: 18px 22px; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 12px; display: flex; justify-content: space-between; align-items: center; transition: all .3s;
  }
  .out-item.hi { background: rgba(255,78,1,0.06); border-color: rgba(255,78,1,0.2); }
  .out-item:hover { transform: scale(1.01); }
  .out-lbl { font-size: 13px; color: var(--muted); }
  .out-val { font-family: var(--font-head); font-size: 20px; font-weight: 900; }
  .out-val.ora { color: var(--orange); }
  .calc-note { padding: 14px 44px; background: rgba(255,78,1,0.04); border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); text-align: center; }

  /* ── CASES ── */
  #cases { background: var(--bg-deep); }
  .cases-header { text-align: center; margin-bottom: 60px; }
  .cases-header .section-sub { margin: 0 auto; }

  .case-featured {
    max-width: 1000px; margin: 0 auto 48px;
    background: var(--bg-glass);
    border: 1px solid rgba(255,78,1,0.3);
    border-radius: 20px; overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 0 60px rgba(255,78,1,0.1);
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .case-featured-left {
    padding: 48px;
    border-right: 1px solid rgba(255,78,1,0.15);
    display: flex; flex-direction: column; justify-content: center;
  }
  .case-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,78,1,0.12); border: 1px solid rgba(255,78,1,0.3);
    border-radius: 100px; padding: 5px 14px;
    font-size: 11px; font-weight: 700; color: var(--orange);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
    width: fit-content;
  }
  .case-featured-left h3 {
    font-family: var(--font-head); font-size: 26px; font-weight: 900;
    line-height: 1.25; margin-bottom: 12px;
  }
  .case-featured-left .case-location {
    color: var(--muted); font-size: 14px; margin-bottom: 28px;
    display: flex; align-items: center; gap: 6px;
  }
  .case-timeline {
    display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
  }
  .case-tline {
    display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--muted);
  }
  .tline-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0;
    box-shadow: 0 0 6px var(--orange);
  }
  .tline-dot.grey { background: rgba(255,255,255,0.2); box-shadow: none; }
  .case-quote {
    font-size: 14px; color: rgba(255,255,255,0.75); font-style: italic; line-height: 1.65;
    padding: 16px; background: rgba(255,78,1,0.06); border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0; margin-top: 4px;
  }
  .case-featured-right {
    padding: 48px;
    display: flex; flex-direction: column; justify-content: center; gap: 20px;
  }
  .case-metric {
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 14px; transition: all .3s;
  }
  .case-metric:hover { border-color: rgba(255,78,1,0.3); background: rgba(255,78,1,0.05); }
  .case-metric-label { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
  .case-metric-value {
    font-family: var(--font-head); font-size: 30px; font-weight: 900; line-height: 1;
  }
  .case-metric-value .ora { color: var(--orange); }
  .case-metric-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }

  .case-metric.highlight {
    background: rgba(255,78,1,0.08); border-color: rgba(255,78,1,0.35);
    box-shadow: 0 0 24px rgba(255,78,1,0.1);
  }
  .case-metric.highlight .case-metric-value { color: var(--orange); }

  .cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
  .case-card {
    background: var(--bg-glass); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; backdrop-filter: blur(10px);
    transition: all .35s; position: relative; overflow: hidden;
  }
  .case-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
    transform: scaleX(0); transform-origin: left; transition: transform .35s;
  }
  .case-card:hover::before { transform: scaleX(1); }
  .case-card:hover { border-color: rgba(255,78,1,0.25); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.5); }
  .cc-type {
    display: inline-block; padding: 4px 12px;
    background: rgba(255,78,1,0.1); border-radius: 100px;
    font-size: 11px; font-weight: 700; color: var(--orange);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
  }
  .cc-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
  .cc-loc { font-size: 12px; color: var(--muted); margin-bottom: 18px; display: flex; align-items: center; gap: 5px; }
  .cc-metrics { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
  .cc-row { display: flex; justify-content: space-between; align-items: center; }
  .cc-key { font-size: 12px; color: var(--muted); }
  .cc-val { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
  .cc-val.hl { color: var(--orange); }
  .cc-divider { height: 1px; background: var(--border); margin: 4px 0; }
  .cc-result {
    padding: 12px 14px; background: rgba(255,78,1,0.06); border: 1px solid rgba(255,78,1,0.2);
    border-radius: 8px; font-size: 13px; color: rgba(255,255,255,.8); line-height: 1.5;
    font-style: italic;
  }

  @media (max-width: 768px) {
    .case-featured { grid-template-columns: 1fr; }
    .case-featured-left { border-right: none; border-bottom: 1px solid rgba(255,78,1,0.15); padding: 32px 24px; }
    .case-featured-right { padding: 32px 24px; }
    .cases-grid { grid-template-columns: 1fr; }
  }

  /* ── TESTIMONIALS ── */
  #testimonials { background: var(--bg-deep); }
  .testi-header { text-align: center; margin-bottom: 52px; }
  .testi-header .section-sub { margin: 0 auto; }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
  .testi-card {
    background: var(--bg-glass); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px; backdrop-filter: blur(16px);
    transition: all .35s; position: relative;
  }
  .testi-card::before {
    content: '"'; position: absolute; top: 12px; right: 20px;
    font-size: 72px; font-family: serif; color: rgba(255,78,1,0.12); line-height: 1;
  }
  .testi-card:hover { transform: translateY(-5px); border-color: rgba(255,78,1,0.25); box-shadow: 0 16px 44px rgba(0,0,0,.5); }
  .stars { display: flex; gap: 3px; margin-bottom: 18px; }
  .star { color: var(--orange); font-size: 15px; }
  .testi-text { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .av {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 14px; font-weight: 900; flex-shrink: 0;
    box-shadow: 0 0 14px var(--orange-glow);
  }
  .a-name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
  .a-tag { font-size: 12px; color: var(--muted); }

  /* ── STATS ── */
  #stats { background: var(--bg-dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 56px 0; }
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
  .stat-item { text-align: center; padding: 16px; border-right: 1px solid var(--border); }
  .stat-item:last-child { border-right: none; }
  .s-num { font-family: var(--font-head); font-size: 48px; font-weight: 900; line-height: 1; display: block; margin-bottom: 6px; }
  .s-num .o { color: var(--orange); }
  .s-lbl { font-size: 13px; color: var(--muted); }

  /* ── CONTACT ── */
  #contact { background: var(--bg-deep); }
  .cont-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
  .cont-left .section-sub { max-width: 340px; margin: 0 0 28px; }
  .ctacards { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
  .ctacard {
    display: flex; gap: 14px; align-items: center; padding: 18px;
    background: var(--bg-glass); border: 1px solid var(--border); border-radius: 12px;
    backdrop-filter: blur(10px); transition: all .3s; cursor: pointer;
  }
  .ctacard:hover { border-color: rgba(255,78,1,0.35); transform: translateX(4px); }
  .ctacard-ico { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; background: rgba(255,78,1,0.12); }
  .ctacard h4 { font-family: var(--font-head); font-weight: 700; font-size: 14px; margin-bottom: 1px; }
  .ctacard p { font-size: 12px; color: var(--muted); }
  .cont-info { display: flex; flex-direction: column; gap: 12px; }
  .cinfo-link {
    display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--white);
    text-decoration: none; transition: color .2s;
  }
  .cinfo-link:hover { color: var(--orange); }
  .cinfo-ico { width: 34px; height: 34px; background: rgba(255,78,1,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
  .socials { display: flex; gap: 10px; margin-top: 6px; }
  .soc {
    width: 40px; height: 40px; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    font-size: 17px; text-decoration: none; transition: all .3s;
  }
  .soc:hover { background: rgba(255,78,1,0.12); border-color: var(--orange); transform: translateY(-2px); }

  .cont-form {
    background: var(--bg-glass); border: 1px solid var(--border); border-radius: 20px;
    padding: 44px; backdrop-filter: blur(16px);
  }
  .form-ttl { font-family: var(--font-head); font-size: 22px; font-weight: 900; margin-bottom: 28px; }
  .f-radios { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
  .f-radio {
    display: flex; align-items: center; gap: 7px; padding: 9px 16px;
    background: rgba(255,78,1,0.05); border: 1px solid var(--border); border-radius: 100px;
    cursor: pointer; transition: all .2s; font-size: 13px;
  }
  .f-radio input { display: none; }
  .f-radio.on { background: rgba(255,78,1,0.12); border-color: var(--orange); color: var(--orange); }
  .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .f-g { margin-bottom: 14px; }
  .f-g label { display: block; font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 7px; }
  .f-ctrl {
    width: 100%; background: rgba(255,78,1,0.04); border: 1px solid var(--border);
    border-radius: 9px; padding: 13px 14px; color: var(--white);
    font-family: var(--font-body); font-size: 14px; outline: none; transition: all .2s; resize: none;
  }
  .f-ctrl::placeholder { color: rgba(255,255,255,.25); }
  .f-ctrl:focus { border-color: var(--orange); box-shadow: 0 0 16px var(--orange-glow); background: rgba(255,78,1,0.07); }
  textarea.f-ctrl { height: 110px; }
  .form-ok { display: none; text-align: center; padding: 28px 0; }
  .form-ok-ico { font-size: 56px; display: block; margin-bottom: 14px; }
  .form-ok h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
  .form-ok p { color: var(--muted); }

  /* ── FOOTER ── */
  footer { background: var(--bg-deep); border-top: 1px solid var(--border); padding: 44px 0 28px; }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
  .foot-brand p { color: var(--muted); font-size: 13px; margin-top: 14px; line-height: 1.6; max-width: 270px; }
  .foot-col h5 { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .foot-col ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 13px; transition: color .2s; }
  .foot-col ul li a:hover { color: var(--orange); }
  .foot-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
  .foot-copy { font-size: 12px; color: var(--muted); }

  /* ── MODAL ── */
  .m-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.8);
    backdrop-filter: blur(12px); z-index: 9999;
    display: flex; align-items: center; justify-content: center; padding: 20px;
    opacity: 0; visibility: hidden; transition: all .3s;
  }
  .m-overlay.open { opacity: 1; visibility: visible; }
  .modal {
    background: var(--bg-card); border: 1px solid rgba(255,78,1,0.2);
    border-radius: 20px; padding: 44px; max-width: 480px; width: 100%; position: relative;
    transform: translateY(28px) scale(.96);
    transition: all .4s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 60px var(--orange-glow);
  }
  .m-overlay.open .modal { transform: translateY(0) scale(1); }
  .m-close {
    position: absolute; top: 18px; right: 18px;
    width: 32px; height: 32px; background: rgba(255,255,255,.06);
    border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px; color: var(--white); transition: all .2s;
  }
  .m-close:hover { background: rgba(255,78,1,0.12); border-color: var(--orange); }
  .m-ttl { font-family: var(--font-head); font-size: 24px; font-weight: 900; margin-bottom: 6px; }
  .m-sub { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
  .m-ok { display: none; text-align: center; padding: 18px 0; }
  .m-ok-ico { font-size: 58px; display: block; margin-bottom: 14px; }
  .m-ok h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
  .m-ok p { color: var(--muted); font-size: 14px; }

  /* ── PROGRESS BAR ── */
  #progress { position: fixed; top: 0; left: 0; height: 3px; z-index: 1000; width: 0%; background: linear-gradient(90deg, var(--orange), var(--orange2)); transition: width .1s; }

  /* ── MOBILE ── */
  .mob-menu {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(16,16,16,.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); z-index: 998;
    padding: 76px 24px 36px;
    transform: translateY(-100%); transition: transform .4s ease;
  }
  .mob-menu.open { transform: translateY(0); }
  .mob-menu ul { list-style: none; display: flex; flex-direction: column; }
  .mob-menu ul li a { display: block; color: var(--white); text-decoration: none; font-size: 17px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .mob-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

  /* ── GLOBAL OVERFLOW FIX ── */
  html, body { overflow-x: hidden !important; width: 100%; }
  section, header, footer, nav, div { max-width: 100%; }

  #hero, #gallery, #problem, #how, #features, #locations,
  #cooperation, #calculator, #cases, #clients, #testimonials,
  #stats, #contact { overflow-x: clip; }

  .gallery-track-wrap { overflow: hidden; max-width: 100vw; }
  .coop-card { overflow: hidden; }
  .coop-card.hot { overflow: hidden; }
  #hero-canvas { width: 100% !important; max-width: 100%; }

  [style*="background:var(--bg-dark)"],
  [style*="background: var(--bg-dark)"],
  [style*="padding:80px 0"],
  [style*="padding: 80px 0"] { overflow-x: clip; }

  .ftag { max-width: 160px; white-space: nowrap; }

  .container { width: 100%; box-sizing: border-box; }
  .how-interactive { width: 100%; min-width: 0; }
  .how-steps-list { min-width: 0; overflow: hidden; }
  .calc-box { width: 100%; }
  .case-featured { width: 100%; }
  .cases-grid { width: 100%; }
  .testi-grid { width: 100%; }
  .feat-grid { width: 100%; }
  .loc-grid { width: 100%; }
  .stats-grid { width: 100%; }

  /* ── TABLET (≤1024px) ── */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-btns { justify-content: center; }
    .hero-numbers { justify-content: center; }
    .feat-grid { grid-template-columns: repeat(2,1fr); }
    .loc-grid { grid-template-columns: repeat(3,1fr); }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .ps-grid { grid-template-columns: 1fr; gap: 36px; }
    .coop-grid { grid-template-columns: 1fr; max-width: 500px; }
    .cases-grid { grid-template-columns: repeat(2,1fr); }
    .case-featured { grid-template-columns: 1fr; }
    .case-featured-left { border-right: none; border-bottom: 1px solid rgba(255,78,1,0.15); }
    .testi-grid { grid-template-columns: repeat(2,1fr); }
    .how-interactive { gap: 24px; }
    .how-banner-wrap { height: 360px; }
    .cont-wrap { grid-template-columns: 1fr; gap: 48px; }
  }

  /* ── MOBILE (≤768px) ── */
  @media (max-width: 768px) {
    .section { padding: 56px 0; }
    .container { padding: 0 16px; }
    .section-title { font-size: clamp(24px, 7vw, 36px); }
    .section-sub { font-size: 15px; }

    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
    nav { padding: 14px 0; }
    .nav-inner { position: relative; }
    .logo { position: absolute; left: 50%; transform: translateX(-50%); }

    #hero { padding-top: 70px; min-height: 100svh; }
    .hero-title { font-size: clamp(30px, 8vw, 46px); margin-bottom: 16px; }
    .hero-sub { font-size: 15px; margin-bottom: 28px; }
    .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 36px; }
    .hero-btns .btn { justify-content: center; width: 100%; padding: 16px 20px; }
    .hero-numbers { flex-wrap: wrap; justify-content: center; gap: 0; }
    .hero-num-item { border-left: none; border-top: 2px solid var(--orange); padding: 12px 20px; text-align: center; flex: 1 1 33%; }
    .hero-num { font-size: 22px; }
    .hero-num-label { font-size: 11px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }

    .gallery-img { width: 160px; height: 130px; }

    .ps-grid { grid-template-columns: 1fr; gap: 24px; }
    .sol-list .section-title, .sol-list .section-label,
    .sol-item:first-of-type ~ .section-title { text-align: left !important; }

    .how-interactive { grid-template-columns: 1fr; gap: 0; }
    .how-banner-wrap { height: auto; aspect-ratio: 4/3; order: -1; margin-bottom: 24px; border-radius: 14px; }
    .how-steps-list { gap: 4px; }
    .how-step-item { padding: 12px 14px; }
    .how-step-num { font-size: 17px; min-width: 28px; }
    .how-step-content h4 { font-size: 14px; }
    .how-step-content p { font-size: 12px; }
    .how-nav { width: 34px; height: 34px; font-size: 17px; }
    .how-prev { left: 8px; }
    .how-next { right: 8px; }
    .how-banner-title { font-size: 16px; }
    .how-banner-overlay { padding: 16px 16px 14px; }

    .feat-grid { grid-template-columns: 1fr; }
    .feat-header { margin-bottom: 36px; }

    .loc-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .loc-card { padding: 20px 10px; }
    .loc-ico { font-size: 30px; margin-bottom: 8px; }
    .loc-card h4 { font-size: 11px; }

    .grid-food-photos { grid-template-columns: repeat(2,1fr) !important; }
    .grid-clients { grid-template-columns: repeat(2,1fr) !important; max-width: 100% !important; }

    .coop-grid { grid-template-columns: 1fr; max-width: 100%; }
    .coop-card { padding: 28px 20px; }
    .coop-card.hot::before { font-size: 8px; top: 14px; right: -28px; }

    .calc-top { grid-template-columns: 1fr; }
    .calc-in { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 20px; }
    .calc-out { padding: 28px 20px; }
    .calc-note { padding: 12px 20px; }
    .out-val { font-size: 17px; }
    .presets { gap: 6px; }
    .preset { padding: 6px 12px; font-size: 12px; }

    .testi-grid { grid-template-columns: 1fr; }
    .testi-card { padding: 24px 20px; }

    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .s-num { font-size: 36px; }
    #stats { padding: 40px 0; }

    .cases-grid { grid-template-columns: 1fr; }
    .case-featured { grid-template-columns: 1fr; }
    .case-featured-left { border-right: none; border-bottom: 1px solid rgba(255,78,1,0.15); padding: 28px 20px; }
    .case-featured-right { padding: 28px 20px; }
    .case-featured-left h3 { font-size: 20px; }
    .case-metric-value { font-size: 24px; }
    .case-tline { font-size: 12px; }

    .cont-wrap { grid-template-columns: 1fr; gap: 36px; }
    .f-row { grid-template-columns: 1fr; }
    .cont-form, .contact-form { padding: 28px 20px; }
    .f-radios { flex-direction: column; gap: 8px; }
    .f-radio { justify-content: center; }
    .ctacards { gap: 10px; }

    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
    .foot-bottom { flex-direction: column; text-align: center; gap: 12px; }
    footer { padding: 36px 0 24px; }

    .modal { padding: 28px 18px; border-radius: 16px; }
    .m-ttl { font-size: 20px; }
    .m-sub { font-size: 13px; }
    .m-overlay { padding: 16px; }
  }

  /* ── SMALL MOBILE (≤480px) ── */
  @media (max-width: 480px) {
    .section { padding: 44px 0; }
    .container { padding: 0 14px; }
    .hero-title { font-size: clamp(26px, 8.5vw, 36px); }
    .hero-badge { font-size: 10px; }
    .hero-sub { font-size: 14px; }
    .hero-num { font-size: 20px; }
    .section-title { font-size: clamp(22px, 7.5vw, 32px); }

    .how-step-item { padding: 10px 12px; gap: 10px; }
    .how-step-num { font-size: 15px; min-width: 24px; }
    .how-step-content h4 { font-size: 13px; }
    .how-step-arrow { display: none; }

    .feat-card { padding: 22px 18px; }
    .feat-icon { width: 44px; height: 44px; font-size: 20px; }

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

    .coop-card { padding: 22px 16px; }
    .coop-card h3 { font-size: 20px; }

    .s-num { font-size: 30px; }
    .stat-item { padding: 12px 8px; }

    .case-timeline { gap: 8px; }
    .case-tline { font-size: 11px; gap: 8px; }

    .calc-in, .calc-out { padding: 22px 16px; }
    .out-val { font-size: 16px; }

    .grid-food-photos { grid-template-columns: repeat(2,1fr) !important; }
    .grid-clients { grid-template-columns: repeat(2,1fr) !important; max-width: 100% !important; }

    .testi-card { padding: 20px 16px; }
    .testi-text { font-size: 13px; }

    .modal { padding: 24px 14px; }

    .hero-btns .btn { font-size: 14px; padding: 14px 16px; }
    .btn-primary, .btn-outline { min-height: 48px; }

    .cont-form, .contact-form { padding: 22px 14px; }
    .form-ttl { font-size: 18px; }
    .f-ctrl, textarea.f-ctrl { font-size: 14px; padding: 12px 12px; }

    .logo { font-size: 18px; }
    .logo-icon { width: 30px; height: 30px; font-size: 15px; }
  }

/* ── MOB LANG ── */
.mob-lang {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.mob-lang-btn {
  flex: 1 1 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 8px;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
}
.mob-lang-btn:hover { border-color: var(--orange); color: var(--white); }
.mob-lang-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display: flex; align-items: center; margin-right: 6px;
}
.lang-select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 7px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 7px 28px 7px 10px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s, background-color .2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255%2C255%2C255%2C0.45)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
}
.lang-select:hover, .lang-select:focus {
  border-color: var(--orange);
  background-color: rgba(255,78,1,0.1);
}
.lang-select option { background: #1a1a1a; color: var(--white); }
@media (max-width: 768px) { .lang-switcher { display: none; } }
