/* ── RESET ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #d42b2b;
  --red-dk: #a81f1f;
  --red-lt: #fdeaea;
  --hover: #f9c519;
  --hover-dk: #d4a010;
  --hover-lt: #fffbe6;
  --corn: #f9c519;
  --bg: #ffffff;
  --cream: #faf7f4;
  --border: #e8e8e8;
  --text: #1a1212;
  --muted: #6b6060;
  --font: 'Nunito', sans-serif;
  --font2: 'Playfair Display', serif;
  --r: 18px;
  --sh: 0 4px 24px rgba(0, 0, 0, .08);
  --sh-lg: 0 12px 48px rgba(0, 0, 0, .13);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

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

em {
  font-style: normal;
  color: var(--red);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* ── UTILS ───────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-cream {
  background: var(--cream);
}

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-lt);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

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

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: all .25s var(--ease);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 22px rgba(212, 43, 43, .3);
}

.btn-red:hover {
  background: var(--hover-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 197, 25, .4);
}

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

/* ── NAV ─────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 0;
  transition: all .3s var(--ease);
}

#navbar.light {
  background: rgba(255, 255, 255, .93);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
  padding: 10px 0;
}

#navbar.dark .nav-links a {
  color: rgba(255, 255, 255, .8);
}

#navbar.dark .nav-links a:hover {
  color: #fff;
}

#navbar.dark .nav-cta {
  background: rgba(255, 255, 255, .2) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, .35);
}

#navbar.dark .burger span {
  background: #fff;
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-link {
  display: flex;
}

.nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: all .3s;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .1));
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: .87rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hover);
  border-radius: 2px;
  transition: width .28s;
}

.nav-links a:hover {
  color: var(--hover-dk);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(212, 43, 43, .25);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--hover) !important;
  color: var(--text) !important;
  box-shadow: 0 6px 20px rgba(249, 197, 25, .4) !important;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ══════════════════════════════════════════════════════
   HERO SCROLL STORY
══════════════════════════════════════════════════════ */
#heroStory {
  position: relative;
}

#heroRunway {
  display: flex;
  flex-direction: column;
}

.runway-step {
  height: 100vh;
}

#heroDisplay {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── background ── */
.hd-bg {
  position: absolute;
  inset: 0;
  transition: background-color .7s ease;
  z-index: 0;
}

/* soft noise texture overlay */
.hd-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── progress line (left side) ── */
.hd-prog-wrap {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 180px;
  background: rgba(255, 255, 255, .2);
  border-radius: 2px;
  z-index: 10;
}

.hd-prog {
  width: 100%;
  height: 0%;
  background: rgba(255, 255, 255, .9);
  border-radius: 2px;
  transition: height .12s linear;
}

/* ── dots (right side) ── */
.hd-dots {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.hd-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  background: transparent;
  cursor: pointer;
  transition: all .3s ease;
}

.hd-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.35);
}

/* ── two-column layout ── */
.hd-layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* LEFT */
.hd-left {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-200px);
}

.hd-img-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 650px;
  height: 650px;
}

/* pevný kruh za trubičkou */
.hd-circle {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .14);
  box-shadow: inset 0 0 60px rgba(255, 255, 255, .06);
  transition: border-color .7s ease, box-shadow .7s ease;
  z-index: 0;
}

/* druhý menší kruh — dashed */
.hd-circle-2 {
  position: absolute;
  width: 630px;
  height: 630px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, .1);
  animation: spinRing 18s linear infinite;
  z-index: 0;
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.hd-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  transition: background .7s ease;
  z-index: 0;
}

.hd-img {
  position: relative;
  z-index: 1;
  height: 530px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, .4));
  transition: opacity .28s ease, transform .38s var(--ease);
  transform-origin: bottom center;
}

.hd-img.swap-out {
  opacity: 0;
  transform: scale(.84) translateY(20px) rotate(-3deg);
}

.hd-img.swap-in {
  opacity: 1;
  transform: scale(1) translateY(0) rotate(0deg);
}

/* RIGHT */
.hd-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-right: 40px;
}

/* flavor number */
.hd-num {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  transition: opacity .3s;
}

.hd-cur {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7);
}

.hd-slash {
  margin: 0 2px;
}

/* tag */
.hd-tag-wrap {
  margin-bottom: 14px;
  transition: opacity .3s;
}

.hd-tag-wrap.swap-out {
  opacity: 0;
}

.hd-tag-wrap.swap-in {
  opacity: 1;
}

.hd-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 100px;
  padding: 5px 18px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}

/* name */
.hd-name {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .2);
  margin-bottom: 18px;
  transition: opacity .28s ease, transform .36s var(--ease);
}

.hd-name.swap-out {
  opacity: 0;
  transform: translateX(20px);
}

.hd-name.swap-in {
  opacity: 1;
  transform: none;
}

/* desc */
.hd-desc {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
  transition: opacity .28s ease, transform .36s var(--ease);
}

.hd-desc.swap-out {
  opacity: 0;
  transform: translateX(14px);
}

.hd-desc.swap-in {
  opacity: 1;
  transform: none;
}

/* facts grid */
.hd-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.hd-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  padding: 13px 16px;
}

.hf-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.hf-val {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.hf-lbl {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  margin-top: 1px;
}

/* scroll cue */
.hd-scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .45);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  transition: opacity .4s;
}

.hd-scroll-cue.gone {
  opacity: 0;
  pointer-events: none;
}

.hd-arrow {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  flex-shrink: 0;
}

.hd-arrow-inner {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, .6);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(14px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* stripe at bottom */
.hd-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  transition: background .7s ease;
  z-index: 10;
}

/* ── STATS ───────────────────────────────────────────── */
.stats-row {
  padding: 60px 0;
  background: var(--bg);
}

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

.stat-box {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 32px 20px;
  text-align: center;
  transition: all .28s var(--ease);
}

.stat-box:hover {
  border-color: var(--hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(249, 197, 25, .18);
}

.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-num .suf {
  font-size: 1.6rem;
}

.stat-label {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 700;
}

/* ── PRODUCTS ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pcard {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: all .3s var(--ease);
  cursor: pointer;
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(249, 197, 25, .2);
  border-color: var(--hover);
}

.pcard-img {
  position: relative;
  padding: 32px 24px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(160deg, color-mix(in srgb, var(--clr, #ccc) 8%, white), white);
}

.pcard-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, color-mix(in srgb, var(--clr, #ccc) 25%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}

.pcard:hover .pcard-glow {
  opacity: 1;
}

.pcard-img img {
  height: 140px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .12));
  transition: transform .4s var(--ease);
}

.pcard:hover .pcard-img img {
  transform: translateY(-8px) scale(1.06);
}

.pcard-info {
  padding: 18px 22px 24px;
}

.pcard-info h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.pcard-info p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.55;
}

.pcard-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  padding: 4px 12px;
}

/* ── ABOUT ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-card-main {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 56px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh);
}

.about-card-main img {
  width: 200px;
  height: auto;
}

.ab-float {
  position: absolute;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .78rem;
  font-weight: 800;
  box-shadow: var(--sh);
  white-space: nowrap;
}

.f1 {
  top: 18px;
  right: -12px;
  animation: bob 4s ease-in-out infinite;
}

.f2 {
  bottom: 36px;
  right: -18px;
  animation: bob 5s ease-in-out infinite 1s;
}

.f3 {
  bottom: 8px;
  left: -10px;
  animation: bob 4.5s ease-in-out infinite 2s;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.15;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: .95rem;
}

.check-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 700;
}

.check-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red-lt);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── WHY ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 30px 24px;
  transition: all .28s var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(249, 197, 25, .18);
  border-color: var(--hover);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: .98rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CORN BLOCK ──────────────────────────────────────── */
.corn-block {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 28px;
  padding: 48px 44px;
  align-items: start;
}

.corn-block-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.corn-block-left h3 {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.corn-block-left p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

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

.corn-nutrient {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 16px 14px;
}

.cn-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.corn-nutrient strong {
  display: block;
  font-size: .84rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.corn-nutrient p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.corn-age-strip {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 16px;
}

.corn-age {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  flex: 1;
}

.corn-age>span {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.corn-age strong {
  display: block;
  font-size: .82rem;
  font-weight: 900;
  margin-bottom: 3px;
}

.corn-age p {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  .corn-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }
}

@media (max-width: 600px) {
  .corn-nutrient-grid {
    grid-template-columns: 1fr;
  }

  .corn-age-strip {
    flex-direction: column;
  }
}

/* ── EXPORT ──────────────────────────────────────────── */
.export-section {
  text-align: center;
}

.export-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.cpill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: .86rem;
  font-weight: 700;
  box-shadow: var(--sh);
  transition: all .25s var(--ease);
  cursor: default;
}

.cpill:hover {
  border-color: var(--hover);
  background: var(--hover-lt);
  transform: translateY(-3px);
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
}

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

.ci {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ci-ico {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ci strong {
  display: block;
  font-size: .78rem;
  color: var(--red);
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ci p,
.ci a {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.ci a:hover {
  color: var(--hover-dk);
}

.contact-form {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--sh);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fg label {
  font-size: .76rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fg input,
.fg textarea {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 15px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color .25s, box-shadow .25s;
}

.fg input:focus,
.fg textarea:focus {
  border-color: var(--hover);
  box-shadow: 0 0 0 3px rgba(249, 197, 25, .15);
  background: #fff;
}

/* ── DISTRIBUTORS ────────────────────────────────────── */
.distributors-section {}

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

.dist-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 26px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .28s var(--ease);
}

.dist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(249, 197, 25, .18);
  border-color: var(--hover);
}

.dist-flag {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.dist-info h3 {
  font-size: .88rem;
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--red);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.dist-info strong {
  font-size: .9rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.dist-info p {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.5;
}

.dist-info a {
  font-size: .82rem;
  color: var(--muted);
  display: inline-block;
  transition: color .2s;
}

.dist-info a:hover {
  color: var(--hover-dk);
}

/* ── MAP ─────────────────────────────────────────────── */
.map-section {
  padding: 80px 0 0;
}

.map-section .section-head {
  margin-bottom: 36px;
}

.map-wrap {
  position: relative;
}

.map-wrap iframe {
  display: block;
  filter: grayscale(15%);
}

.map-overlay-card {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: var(--sh-lg);
  text-align: center;
  min-width: 220px;
  z-index: 10;
}

.map-overlay-card strong {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.map-overlay-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .map-overlay-card {
    position: static;
    transform: none;
    margin: 0 24px;
    border-radius: 16px 16px 0 0;
    border-bottom: none;
  }

  .map-wrap iframe {
    height: 280px;
  }
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--cream);
  border-top: 1.5px solid var(--border);
  padding: 52px 24px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .25s;
}

.footer-links a:hover {
  color: var(--hover-dk);
}

.footer-copy {
  font-size: .74rem;
  color: #bbb;
}

/* ── LANG SWITCHER ───────────────────────────────────────── */
.lang-sw {
  display: flex;
  gap: 2px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 3px 5px;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: border-color .2s, background .2s;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.lang-btn:hover {
  border-color: var(--border);
  background: var(--cream);
}

.lang-btn.active {
  border-color: var(--hover);
  background: var(--hover-lt);
}

#navbar.dark .lang-btn {
  color: #fff;
}

#navbar.dark .lang-btn.active {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .12);
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 18px;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: rgba(255, 255, 255, .97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 34px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, .1);
    transition: right .36s var(--ease);
    z-index: 199;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--text) !important;
  }

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

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

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

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

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

  .hd-layout {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .hd-left {
    transform: none;
  }

  .hd-logo-wrap {
    display: none;
  }

  .hd-right {
    padding-right: 0;
    align-items: center;
  }

  .hd-facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hd-img-stage {
    width: 240px;
    height: 240px;
  }

  .hd-circle {
    width: 200px;
    height: 200px;
  }

  .hd-circle-2 {
    width: 230px;
    height: 230px;
  }

  .hd-img {
    height: 190px;
  }

  .hd-glow {
    width: 180px;
    height: 180px;
  }

  .hd-prog-wrap,
  .hd-dots {
    display: none;
  }

  .hd-name {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .hd-desc {
    font-size: .88rem;
    text-align: center;
    max-width: 100%;
  }

  .hd-scroll-cue {
    justify-content: center;
  }

  .footer-links {
    gap: 14px;
  }

  .about-card-main {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 14px;
  }

  .contact-form {
    padding: 20px;
  }

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

  .hd-pills {
    display: none;
  }

  .lang-btn {
    font-size: 1rem;
    min-width: 30px;
    min-height: 30px;
  }

  .footer-links {
    gap: 10px;
  }

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