/* =========================================================
   Ki Baleares — Vertriebler Landingpage
   EisBerger-Style · Teal / Coral / Cream · Lifestyle & Pool
   ========================================================= */

:root {
  --teal: #0F5155;
  --teal-dark: #083437;
  --teal-bright: #2A8B8F;
  --coral: #E06B4E;
  --coral-dark: #B8553A;
  --peach: #F5C5A8;
  --cream: #FAF4E8;
  --sand: #F1E7D1;
  --ink: #1F2937;
  --muted: #5E5E5E;
  --white: #FFFFFF;
  --line: rgba(15,81,85,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.serif { font-family: 'Fraunces', 'Playfair Display', Georgia, serif; }
.script { font-family: 'Caveat', 'Dancing Script', cursive; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ NAV (minimal) ============ */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, padding 0.3s;
}
header.nav.scrolled {
  background: rgba(250,244,232,0.96);
  backdrop-filter: blur(10px);
  padding: 12px 40px;
  box-shadow: 0 1px 0 rgba(15,81,85,0.08);
}
.nav-logo { height: 48px; }
.nav-logo img { height: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-back {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-back:hover { opacity: 1; }
.lang-switch {
  display: flex;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
.lang-switch a { color: var(--muted); padding: 4px 6px; }
.lang-switch a.active { color: var(--teal); }
.nav-cta-wa {
  background: var(--teal);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.nav-cta-wa:hover { background: var(--teal-dark); color: #fff; }
.nav-cta-wa svg { width: 14px; height: 14px; fill: #fff; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 110px 40px 50px;
  position: relative;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(224,107,78,0.10) 0%, transparent 70%);
  z-index: 0;
}
.hero-text { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(15,81,85,0.08);
  color: var(--teal);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
}
.hero h1 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  color: var(--teal);
  letter-spacing: -2px;
  margin-bottom: 32px;
}
.hero h1 .accent {
  color: var(--coral);
  font-style: italic;
  font-weight: 400;
}
.hero h1 .underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 4px;
  background: var(--coral);
  opacity: 0.6;
  transform: skewY(-1deg);
}
.hero-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-lead strong { color: var(--teal); font-weight: 700; }

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-wa {
  background: var(--coral);
  color: #fff;
  padding: 18px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
  box-shadow: 0 12px 30px rgba(224,107,78,0.35);
}
.btn-wa:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(224,107,78,0.4); color: #fff; }
.btn-wa svg { width: 22px; height: 22px; fill: #fff; }
.btn-email {
  background: transparent;
  color: var(--teal);
  padding: 18px 30px;
  border: 2px solid var(--teal);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
}
.btn-email:hover { background: var(--teal); color: #fff; }

.hero-sig {
  font-family: 'Caveat', 'Dancing Script', cursive;
  font-size: 22px;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-sig::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--teal);
  display: inline-block;
}

.hero-visual {
  position: relative;
  z-index: 1;
  height: 80vh;
  max-height: 780px;
  min-height: 520px;
}
.hero-visual .img-main {
  position: absolute;
  inset: 0;
  background: url('../img/hero-vertrieb.jpg') center/cover no-repeat;
  border-radius: 30px 30px 200px 30px;
  box-shadow: 0 50px 100px rgba(15,81,85,0.25);
}
.hero-visual .sticker {
  position: absolute;
  top: 30px;
  left: -40px;
  width: 150px; height: 150px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(224,107,78,0.45);
  transform: rotate(-12deg);
  font-family: 'Poppins', sans-serif;
  padding: 0 10px;
}
.hero-visual .sticker .big {
  font-size: 22px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-visual .sticker .sm {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.95;
}

.hero-visual .floating-img {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 38%;
  aspect-ratio: 3/4;
  background: url('../img/mango-hand.jpg') center/cover no-repeat;
  border: 10px solid var(--cream);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(15,81,85,0.3);
  transform: rotate(-3deg);
}

/* ============ DEAL ============ */
.deal {
  padding: 90px 40px;
  background: var(--teal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.deal::before, .deal::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,107,78,0.2) 0%, transparent 60%);
  z-index: 0;
}
.deal::before { top: -200px; left: -200px; }
.deal::after { bottom: -200px; right: -200px; }
.deal-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.deal-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--peach);
  margin-bottom: 20px;
}
.deal h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 60px;
  color: #fff;
}
.deal h2 .big {
    display: block;
    font-size: clamp(56px, 10vw, 128px);
    font-weight: 700;
    color: var(--coral);
    letter-spacing: -3px;
    line-height: 0.95;
    margin: 14px 0;
    font-family: 'Poppins', sans-serif;
  }

.deal-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}
.deal-point {
  background: rgba(255,255,255,0.07);
  padding: 28px 26px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
}
.deal-point .ix {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 52px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}
.deal-point h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.deal-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.deal-calc {
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.deal-calc .num {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 42px;
  color: var(--coral);
  line-height: 1;
}

/* ============ STORY ============ */
.story { padding: 90px 40px; background: var(--cream); }
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  aspect-ratio: 4/5;
  background: url('../img/lifestyle.jpg') center/cover no-repeat;
  border-radius: 20px 200px 20px 20px;
  box-shadow: 0 40px 80px rgba(15,81,85,0.2);
}
.story-text .tag {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--coral);
  margin-bottom: 18px;
}
.story-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--teal);
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.story-text h2 em { font-style: italic; color: var(--coral); }
.story-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 18px;
}
.story-text p strong { color: var(--teal); font-weight: 700; }

/* ============ FLAVORS STRIP ============ */
.flavors-strip {
  padding: 60px 0 70px;
  background: var(--sand);
  overflow: hidden;
}
.flavors-strip .title {
  text-align: center;
  margin-bottom: 50px;
}
.flavors-strip .title .tag {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--coral);
}
.flavors-strip h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--teal);
  margin-top: 10px;
}
.flavors-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 40px;
  scrollbar-width: none;
}
.flavors-row::-webkit-scrollbar { display: none; }
.flavor-item {
  flex: 0 0 240px;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15,81,85,0.1);
  transition: transform 0.3s;
}
.flavor-item:hover { transform: translateY(-6px); }
.flavor-item .pic {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.flavor-item .cap {
  padding: 18px 16px;
  text-align: center;
}
.flavor-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.flavor-item .note {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ============ FIT / PROFIL ============ */
.fit {
  padding: 90px 40px;
  background: var(--cream);
}
.fit-inner { max-width: 1100px; margin: 0 auto; }
.fit-head { text-align: center; margin-bottom: 50px; }
.fit-head .tag {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--coral);
  display: block;
  margin-bottom: 14px;
}
.fit-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1.15;
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.fit-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid var(--line);
}
.fit-card.yes { border-left: 6px solid var(--teal); }
.fit-card.no  { border-left: 6px solid var(--coral); }
.fit-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fit-card.no h3 { color: var(--coral); }
.fit-card h3 span { font-family: 'Caveat', cursive; font-size: 40px; }
.fit-list { list-style: none; }
.fit-list li {
  padding: 12px 0 12px 34px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  border-top: 1px solid var(--line);
  position: relative;
}
.fit-list li:first-child { border-top: 0; padding-top: 0; }
.fit-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 20px; height: 2px;
  background: var(--teal);
}
.fit-card.no .fit-list li::before { background: var(--coral); }
.fit-card.no .fit-list li:first-child::before { top: 8px; }

/* ============ SUPPORT ============ */
.support {
  padding: 90px 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}
.support-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.support-text .tag {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--coral);
  display: block;
  margin-bottom: 14px;
}
.support-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.support-text h2 em { font-style: italic; color: var(--coral); }
.support-text > p {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 520px;
}
.support-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.support-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.support-item:first-child { border-top: 0; padding-top: 0; }
.support-item .chk {
  width: 28px; height: 28px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.support-item .chk svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 3; }
.support-item .content strong {
  display: block;
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.support-item .content span {
  font-size: 14px;
  color: var(--muted);
}
.support-visual {
  aspect-ratio: 4/5;
  background: url('../img/beachclub.jpg') center/cover no-repeat;
  border-radius: 20px 20px 20px 200px;
  box-shadow: 0 40px 80px rgba(15,81,85,0.2);
}

/* ============ VENDING / STANDORTPRÄMIE ============ */
.vending {
  padding: 90px 40px;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.vending::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,107,78,0.10) 0%, transparent 70%);
  z-index: 0;
}
.vending-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.vending-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--peach) 0%, var(--coral) 100%);
  border-radius: 200px 20px 20px 20px;
  box-shadow: 0 40px 80px rgba(224,107,78,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14%;
}
.vending-visual .machine-icon {
  width: 70%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(15,81,85,0.25));
}
.vending-visual .bounty-sticker {
  position: absolute;
  bottom: -28px;
  right: -22px;
  width: 150px; height: 150px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(15,81,85,0.45);
  transform: rotate(-8deg);
  font-family: 'Poppins', sans-serif;
}
.vending-visual .bounty-sticker .big {
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.vending-visual .bounty-sticker .sm {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.95;
}
.vending-text .tag {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--coral);
  display: block;
  margin-bottom: 14px;
}
.vending-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 26px;
}
.vending-text h2 em { font-style: italic; color: var(--coral); }
.vending-text .lead {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
}
.vending-text .lead strong { color: var(--teal); font-weight: 700; }
.vending-bullets {
  list-style: none;
  margin-bottom: 32px;
}
.vending-bullets li {
  padding: 12px 0 12px 32px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  position: relative;
  border-top: 1px solid var(--line);
}
.vending-bullets li:first-child { border-top: 0; padding-top: 0; }
.vending-bullets li::before {
  content: '→';
  position: absolute;
  left: 0; top: 11px;
  color: var(--coral);
  font-weight: 700;
  font-size: 18px;
}
.vending-bullets li:first-child::before { top: 0; }
.vending-bullets li em { font-style: italic; color: var(--teal); font-weight: 600; }
.btn-wa-teal {
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(15,81,85,0.28);
}
.btn-wa-teal:hover {
  background: var(--teal-dark);
  box-shadow: 0 16px 40px rgba(15,81,85,0.38);
}
.vending-fineprint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 90px 40px;
  background: var(--teal);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(224,107,78,0.15);
}
.final-cta-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta .tag {
  font-family: 'Caveat', cursive;
  font-size: 30px;
  color: var(--peach);
  margin-bottom: 18px;
  display: block;
}
.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #fff;
  letter-spacing: -1.5px;
}
.final-cta h2 em { color: var(--coral); font-style: italic; }
.final-cta p {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
  line-height: 1.65;
}
.final-cta .ctas { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-wa {
  padding: 20px 36px;
  font-size: 16px;
}

.signature {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}
.signature .name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

/* ============ FOOTER ============ */
footer.footer-vertrieb {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px;
  text-align: center;
  font-size: 13px;
}
footer.footer-vertrieb img { height: 40px; margin: 0 auto 20px; filter: brightness(0) invert(1); opacity: 0.9; }
footer.footer-vertrieb a { color: var(--coral); }
footer.footer-vertrieb .links {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  header.nav { padding: 14px 20px; }
  header.nav.scrolled { padding: 10px 20px; }
  .nav-back { display: none; }

  .hero { grid-template-columns: 1fr; padding: 100px 20px 60px; gap: 40px; }
  .hero-visual { height: 520px; min-height: unset; }
  .hero-visual .floating-img { width: 42%; left: -20px; }
  .hero-visual .sticker { top: 20px; left: 20px; width: 120px; height: 120px; }
  .hero-visual .sticker .big { font-size: 18px; letter-spacing: 0.3px; }
  .hero-visual .sticker .sm { font-size: 9px; letter-spacing: 1.4px; }

  .deal, .story, .fit, .support, .final-cta { padding: 60px 20px; }
  .deal-points { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .deal-calc { flex-direction: column; text-align: center; padding: 28px 20px; font-size: 16px; }

  .story-inner, .support-inner { grid-template-columns: 1fr; gap: 50px; }
  .support-items { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .flavors-row { padding: 20px 20px; gap: 16px; }
  .flavor-item { flex: 0 0 200px; }

  .vending { padding: 60px 20px; }
  .vending-inner { grid-template-columns: 1fr; gap: 70px; }
  .vending-visual { max-width: 320px; margin: 0 auto; aspect-ratio: 1/1.1; }
  .vending-visual .bounty-sticker { width: 120px; height: 120px; bottom: -20px; right: -10px; }
  .vending-visual .bounty-sticker .big { font-size: 30px; }
}
