:root {
  --cream: #f4ead6;
  --cream-2: #efe0c7;
  --ink: #07110d;
  --text: #102019;
  --muted: #6a746e;
  --green: #0d2a20;
  --green-2: #174735;
  --green-3: #27664d;
  --gold: #c79a4a;
  --gold-2: #f1d889;
  --gold-dark: #8a601f;
  --line: rgba(255,255,255,.16);
  --shadow: 0 28px 90px rgba(4, 13, 9, .25);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(199,154,74,.22), transparent 30rem),
    radial-gradient(circle at 86% 12%, rgba(16,65,48,.20), transparent 34rem),
    linear-gradient(135deg, #f7efdf 0%, #efe0c6 44%, #faf2e2 100%);
  background-size: 140% 140%, 150% 150%, 220% 220%;
  animation: pageGradient 20s ease-in-out infinite alternate;
  line-height: 1.55;
  overflow-x: hidden;
  font-weight: 600;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14,42,32,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,42,32,.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at 50% 18%, black 0%, transparent 74%);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; }
img { max-width: 100%; }
svg { width: 1.05em; height: 1.05em; fill: currentColor; }
p { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.04; font-weight: 900; letter-spacing: -.045em; }
h1 { font-size: clamp(2.8rem, 7.4vw, 6.35rem); max-width: 900px; }
h2 { font-size: clamp(2.05rem, 4.2vw, 3.7rem); }
h3 { font-size: 1.22rem; letter-spacing: -.025em; }

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: 96px 0; scroll-margin-top: 86px; }
.soft { background: linear-gradient(180deg, rgba(255,255,255,.34), rgba(255,255,255,0)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 238, 222, .82);
  border-bottom: 1px solid rgba(10,30,22,.08);
  backdrop-filter: blur(20px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 238, 222, .92);
  box-shadow: 0 14px 44px rgba(8, 24, 18, .12);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff5cc;
  font-weight: 950;
  background:
    radial-gradient(circle at 32% 24%, rgba(241,216,137,.85), transparent 32%),
    linear-gradient(145deg, var(--green), var(--green-2));
  box-shadow: 0 16px 42px rgba(13,42,32,.28), inset 0 1px 0 rgba(255,255,255,.24);
  animation: softPulse 4.8s ease-in-out infinite;
}
.brand strong { display: block; font-size: 1.08rem; font-weight: 950; letter-spacing: .01em; }
.brand small { display: block; color: var(--muted); margin-top: -2px; font-size: .78rem; font-weight: 700; }
.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-left: auto;
  padding: 6px;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(255,255,255,.34);
  border: 1px solid rgba(13,42,32,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42);
}
.main-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  opacity: .92;
  background: linear-gradient(90deg, rgba(224,193,111,.16) 0%, rgba(255,255,255,.03) 24%, rgba(21,88,62,.14) 52%, rgba(255,255,255,.04) 76%, rgba(224,193,111,.14) 100%);
  background-size: 220% 100%;
  animation: navGradientFlow 18s ease-in-out infinite alternate;
}
.main-nav a {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  color: #5e6b64;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 780;
  transition: background .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--green);
  background: rgba(255,255,255,.58);
  box-shadow: 0 10px 24px rgba(13,42,32,.08);
  transform: translateY(-1px);
}
.header-phone {
  padding: 11px 15px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 14px 34px rgba(13,42,32,.24);
  white-space: nowrap;
  font-weight: 850;
}
.icon-link { display: inline-flex; align-items: center; gap: 9px; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 84px;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: .72;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb-a { width: 320px; height: 320px; right: 8%; top: 12%; background: rgba(199,154,74,.26); }
.hero-orb-b { width: 420px; height: 420px; left: -130px; bottom: -130px; background: rgba(13,42,32,.22); animation-delay: -3s; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .72fr);
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-weight: 920;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .75rem;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.hero h1 { margin-top: 20px; }
.hero-lead {
  max-width: 720px;
  margin-top: 24px;
  color: #65716a;
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  font-weight: 650;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -65%;
  width: 54%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  opacity: 0;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { animation: buttonShine .85s ease; }
.btn.primary { color: #fff; background: linear-gradient(135deg, #0d2a20, #1c5a43); box-shadow: 0 18px 42px rgba(13,42,32,.28); }
.btn.glass { color: var(--green); background: rgba(255,255,255,.62); border: 1px solid rgba(13,42,32,.12); }
.btn.full { width: 100%; }

.hero-showcase {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(12,31,23,.96), rgba(25,76,56,.92)) padding-box,
    linear-gradient(135deg, rgba(241,216,137,.62), rgba(255,255,255,.16), rgba(33,112,81,.55)) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--shadow);
  color: #fff;
  min-height: 540px;
  display: grid;
  align-content: space-between;
}
.showcase-glow {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 60deg, transparent, rgba(241,216,137,.18), transparent, rgba(81,172,130,.2), transparent);
  animation: spinGlow 12s linear infinite;
}
.showcase-top, .showcase-bottom, .showcase-image-wrap { position: relative; z-index: 1; }
.showcase-top { display: flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.76); font-weight: 820; }
.showcase-top strong { color: var(--gold-2); }
.showcase-image-wrap {
  min-height: 305px;
  display: grid;
  place-items: center;
  margin: 18px 0;
  padding: 24px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 42%, rgba(255,255,255,.98), rgba(250,241,220,.92) 58%, rgba(217,179,98,.38));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.showcase-image-wrap img {
  max-height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.22));
  opacity: 0;
  transform: translateY(8px) scale(.98);
  transition: opacity .35s ease, transform .35s ease;
}
.showcase-image-wrap img.is-loaded { opacity: 1; transform: translateY(0) scale(1); }
.showcase-bottom h2 { color: #fff; font-size: clamp(1.45rem, 2.4vw, 2.25rem); }
.showcase-bottom p { margin-top: 12px; color: rgba(255,255,255,.74); font-weight: 650; }
.mini-link { display: inline-block; margin-top: 16px; color: var(--gold-2); font-weight: 930; }

.two-col, .marketing-grid, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
}
.section-copy h2 { margin: 16px 0 18px; }
#marketing .btn.primary { margin-top: 14px; }
.section-copy p, .section-head p { color: var(--muted); font-size: 1.05rem; font-weight: 650; }
.section-copy p + p { margin-top: 12px; }
.section-head { max-width: 840px; margin-bottom: 32px; }
.section-head h2 { margin: 14px 0 14px; }

.stats-grid, .info-cards, .partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.info-cards, .partner-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.stats-grid article, .timeline article, .partner-card, .contact-card, .telegram-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.68);
  box-shadow: 0 18px 52px rgba(16,36,29,.08);
  transition: transform .28s ease, box-shadow .28s ease;
}
.stats-grid article:hover, .timeline article:hover, .partner-card:hover, .contact-card:hover, .telegram-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 76px rgba(16,36,29,.14);
}
.stats-grid article { min-height: 164px; display: flex; flex-direction: column; justify-content: space-between; }
.stats-city strong { font-size: clamp(1.9rem, 3.4vw, 3rem); line-height: 1; letter-spacing: -.03em; }
.stats-city span { max-width: 18ch; }
.stats-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: .9;
  font-weight: 950;
}
.stats-grid span { color: var(--muted); font-weight: 680; }

.peptide-section {
  position: relative;
  overflow: hidden;
  color: #f5fbf7;
  background:
    radial-gradient(circle at 17% 18%, rgba(229,199,120,.16), transparent 26rem),
    radial-gradient(circle at 88% 16%, rgba(29,111,79,.26), transparent 32rem),
    radial-gradient(circle at 50% 88%, rgba(199,154,74,.12), transparent 26rem),
    linear-gradient(135deg, #050b08 0%, #0a1812 34%, #0f2b20 68%, #06100c 100%);
}
.peptide-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 75%);
}
.peptide-section .container { position: relative; z-index: 1; }
.peptide-section .section-head h2 { color: #fff; text-shadow: 0 2px 22px rgba(0,0,0,.28); }
.peptide-section .eyebrow,
.peptide-section .section-head p { color: rgba(244,250,246,.80); }
.premium-info { gap: 18px; }
.info-card {
  --angle: 0deg;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 255px;
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(5,12,9,.96), rgba(13,38,29,.94)) padding-box,
    conic-gradient(from var(--angle), rgba(255,230,157,.98), rgba(32,125,89,.9), rgba(255,255,255,.12), rgba(199,154,74,.92), rgba(255,230,157,.98)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 20px 70px rgba(0,0,0,.34), 0 0 34px rgba(199,154,74,.08);
  animation: borderRotate 7.5s linear infinite;
}
.info-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 26px;
  background:
    radial-gradient(circle at 72% 12%, rgba(241,216,137,.18), transparent 42%),
    linear-gradient(160deg, rgba(10,25,18,.96), rgba(16,55,40,.86));
}
.info-card::after {
  content: "";
  position: absolute;
  inset: -55%;
  z-index: -1;
  background: conic-gradient(from 45deg, transparent, rgba(241,216,137,.16), transparent, rgba(51,154,110,.14), transparent);
  animation: spinGlow 10s linear infinite;
}
.info-card:nth-child(2) { animation-delay: -2.4s; }
.info-card:nth-child(3) { animation-delay: -4.8s; }
.info-card h3 { color: #fff; font-size: 1.35rem; }
.info-card p {
  margin-top: 14px;
  color: rgba(255,255,255,.86);
  font-weight: 720;
  text-shadow: 0 1px 10px rgba(0,0,0,.34);
}
.card-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff8e7;
  font-weight: 950;
  background: radial-gradient(circle at 28% 24%, rgba(255,255,255,.45), transparent 33%), linear-gradient(145deg, #d6a346, #8b611e);
  box-shadow: 0 16px 34px rgba(199,154,74,.26);
}
.dark-notice {
  color: rgba(255,250,236,.92);
  background: rgba(255,255,255,.065);
  border-color: rgba(241,216,137,.28);
  backdrop-filter: blur(14px);
}
.notice {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(199,154,74,.30);
  border-radius: var(--radius-sm);
  color: #68491d;
  background: rgba(199,154,74,.11);
  font-weight: 700;
}

.catalog-section, .pdf-section {
  position: relative;
  overflow: hidden;
  color: #edf5f0;
  background:
    radial-gradient(circle at 12% 14%, rgba(199,154,74,.18), transparent 22rem),
    radial-gradient(circle at 86% 20%, rgba(44,130,94,.24), transparent 26rem),
    linear-gradient(135deg, #06100c 0%, #0c2018 42%, #123b2b 74%, #050c09 100%);
}
.catalog-section .section-head h2, .pdf-section .section-head h2 { color: #fff; }
.catalog-section .eyebrow, .catalog-section .section-head p, .pdf-section .eyebrow, .pdf-section .section-head p { color: rgba(237,245,240,.80); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter-btn {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(237,245,240,.88);
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease;
}
.filter-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }
.filter-btn.is-active { color: #fff; background: linear-gradient(135deg, #c79a4a, #8f6423); }
.catalog-grid, .pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 22px;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.045)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,.22), rgba(241,216,137,.44), rgba(44,130,94,.34)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at var(--mx, 74%) var(--my, 10%), rgba(241,216,137,.20), transparent 15rem);
  pointer-events: none;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 34px 96px rgba(0,0,0,.34); }
.product-card > * { position: relative; }
.product-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.product-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, #0b3728, #1c6b4d);
  color: #ffe698;
  font-size: 1.42rem;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.product-tag {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(241,216,137,.16);
  border: 1px solid rgba(241,216,137,.18);
  color: #ffe59a;
  font-size: .8rem;
  font-weight: 920;
  text-align: right;
}
.product-visual {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fff8e8 55%, #e0b868 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
}
.product-image {
  width: 100%;
  max-width: 258px;
  max-height: 188px;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0,0,0,.18));
  transition: transform .28s ease;
}
.product-card:hover .product-image { transform: translateY(-5px) scale(1.035); }
.image-fallback { display: none; color: #102019; font-weight: 900; text-align: center; }
.has-broken-image .image-fallback { display: block; }
.is-broken { display: none; }
.product-card h3 { margin-top: 20px; color: #fff; font-size: 1.25rem; }
.product-card p { margin-top: 12px; color: rgba(237,245,240,.76); font-weight: 650; }
.product-meta { margin-top: 16px; color: var(--gold-2); font-weight: 950; }
.product-card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 20px; }
.open-product, .gallery-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 920;
  transition: transform .22s ease, background .22s ease;
}
.open-product:hover, .gallery-product:hover { transform: translateY(-2px); background: rgba(241,216,137,.20); }
.is-hidden { display: none !important; }

.timeline { display: grid; gap: 14px; }
.timeline article { display: grid; grid-template-columns: 52px 1fr; gap: 8px 14px; }
.timeline span {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}
.timeline p, .partner-card p { color: var(--muted); font-weight: 650; }
.partner-card { background: rgba(255,255,255,.72); }
.partner-card h3 { margin-top: 0; }
.partner-card p { margin-top: 12px; }
.partner-cta {
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius-md);
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}
.partner-cta .eyebrow { color: var(--gold-2); }
.partner-cta h3 { margin: 12px 0 8px; }
.partner-cta p { color: rgba(255,255,255,.76); font-weight: 650; }


.contact-card, .telegram-card { background: rgba(255,255,255,.76); }
.contact-card h2 { margin: 14px 0; }
.contact-card p, .telegram-card p { color: var(--muted); font-weight: 650; }
.contact-actions { display: grid; gap: 12px; margin-top: 24px; }
.contact-line {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 18px;
  border: 1px solid rgba(13,42,32,.10);
  background: rgba(255,255,255,.62);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}
.contact-line:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(16,36,29,.10); background: #fff; }
.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--green-2));
}
.contact-line span:not(.contact-icon) { color: var(--muted); font-weight: 780; }
.contact-line strong { color: var(--green); font-weight: 950; }
.copy-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.copy-btn {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(13,42,32,.12);
  background: #fff;
  color: var(--green);
  font-weight: 920;
  transition: transform .22s ease, box-shadow .22s ease;
}
.copy-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16,36,29,.10); }
.telegram-card { display: grid; gap: 16px; position: relative; overflow: hidden; }
.telegram-links { display: grid; gap: 10px; margin-top: 6px; }
.form-note { color: var(--muted); font-size: .92rem; }

.site-footer { padding: 34px 0; color: rgba(255,255,255,.72); background: var(--ink); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.site-footer strong { display: block; color: #fff; margin-bottom: 6px; font-weight: 950; }
.site-footer p { max-width: 620px; font-weight: 650; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.footer-links a { padding: 9px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-weight: 800; }

.product-modal {
  width: min(980px, calc(100% - 28px));
  max-height: min(860px, calc(100vh - 28px));
  border: 0;
  border-radius: 34px;
  padding: 0;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8,20,15,.98), rgba(14,54,39,.96)) padding-box,
    conic-gradient(from 210deg, rgba(241,216,137,.86), rgba(61,157,112,.56), rgba(255,255,255,.14), rgba(199,154,74,.8)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 40px 120px rgba(0,0,0,.46);
  overflow: hidden;
}
.product-modal::backdrop { background: rgba(3, 8, 6, .72); backdrop-filter: blur(7px); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
}
.modal-body { padding: 28px; }
.modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(340px, 1.08fr);
  gap: 24px;
  align-items: center;
}
.modal-visual {
  min-height: 438px;
  display: grid;
  place-items: center;
  padding: 26px;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 44%, #fff 0%, #fff5dc 55%, #d7a954 100%);
}
.modal-product-image {
  width: 100%;
  max-width: 360px;
  max-height: 370px;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(0,0,0,.22));
}
.modal-info {
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-kicker {
  display: inline-block;
  color: var(--gold-2);
  font-size: .82rem;
  font-weight: 930;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.modal-info h2 { margin-top: 12px; color: #fff; font-size: clamp(1.8rem, 4vw, 3.2rem); padding-right: 44px; }
.modal-accent { margin-top: 14px; color: rgba(255,255,255,.74); font-weight: 700; }
.modal-info dl { display: grid; gap: 12px; margin: 22px 0; }
.modal-info dt { color: rgba(255,255,255,.56); font-size: .88rem; font-weight: 760; }
.modal-info dd { margin: 0; color: #fff; font-weight: 880; }
.modal-note {
  padding: 16px 18px;
  border: 1px solid rgba(241,216,137,.24);
  border-radius: 18px;
  color: rgba(255,250,236,.88);
  background: rgba(241,216,137,.08);
  font-size: .94rem;
  margin-top: 8px;
}
.modal-arrows {
  position: absolute;
  inset: auto 0 -16px 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
}
.modal-arrow {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(241,216,137,.35);
  color: #fff;
  background: linear-gradient(145deg, rgba(199,154,74,.92), rgba(21,79,56,.94));
  font-size: 2.1rem;
  line-height: 1;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  transition: transform .22s ease;
}
.modal-arrow:hover { transform: translateY(-2px) scale(1.04); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 70;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px) scale(.985); transition: opacity .72s ease, transform .72s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

@keyframes pageGradient {
  0% { background-position: 0% 0%, 100% 15%, 0% 50%; }
  50% { background-position: 16% 12%, 82% 26%, 60% 48%; }
  100% { background-position: 32% 4%, 68% 10%, 100% 50%; }
}
@keyframes softPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
@keyframes orbFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(14px,-18px,0) scale(1.08); }
}
@keyframes buttonShine {
  0% { transform: translateX(0) skewX(-22deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateX(330%) skewX(-22deg); opacity: 0; }
}
@keyframes spinGlow { to { transform: rotate(1turn); } }
@keyframes borderRotate { to { --angle: 360deg; } }

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@media (max-width: 1120px) {
  .main-nav a { padding: 10px 8px; font-size: .88rem; }
  .header-phone { display: none; }
  .modal-shell { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .hero-grid, .two-col, .marketing-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 58px; }
  .catalog-grid, .pdf-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .info-cards, .partner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --container: min(100% - 22px, 1180px); }
  h1 { font-size: clamp(2.35rem, 13vw, 4.1rem); }
  .nav-wrap { min-height: 68px; }
  .brand-mark { width: 42px; height: 42px; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(13,42,32,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.62);
  }
  .nav-toggle span { display: block; width: 19px; height: 2px; border-radius: 99px; background: var(--green); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    left: 11px;
    right: 11px;
    top: 76px;
    display: grid;
    padding: 12px;
    border: 1px solid rgba(13,42,32,.12);
    border-radius: 24px;
    background: rgba(255,250,241,.97);
    box-shadow: 0 24px 74px rgba(16,36,29,.16);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 13px 14px; font-size: 1rem; }
  .hero-showcase { min-height: 460px; padding: 18px; }
  .showcase-image-wrap { min-height: 255px; }
  .showcase-image-wrap img { max-height: 225px; }
  .stats-grid, .catalog-grid, .pdf-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .contact-line { grid-template-columns: 46px 1fr; }
  .contact-line strong { grid-column: 2; }
  .copy-actions { display: grid; }
  .partner-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .modal-body { padding: 18px; }
  .modal-shell { grid-template-columns: 1fr; }
  .modal-visual { min-height: 290px; }
  .modal-product-image { max-height: 250px; }
  .modal-info h2 { padding-right: 44px; }
  .modal-arrows { position: static; margin-top: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}


@keyframes navGradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
