/* КУРОФФ — продающий лендинг B2B */

:root {
  --primary: #14824a;
  --primary-dark: #0f6b38;
  --primary-deep: #0b2416;
  --accent: #e8b84a;
  --bg: #f3f7f4;
  --bg-alt: #e4efe8;
  --surface: #ffffff;
  --text: #102418;
  --text-muted: #3a5646;
  --border: rgba(16, 36, 24, 0.12);
  --max-w: 1120px;
  --header-h: 72px;
  --side-nav-w: 268px;
  --side-nav-w-collapsed: 76px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
  --radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

.container {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
}

/* Side nav (desktop, menu-layout-side) */

.site-side-nav {
  display: none;
}

html.menu-layout-side body,
body.menu-layout-side {
  display: grid;
  grid-template-columns: var(--side-nav-w) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
}

html.menu-layout-side body.side-nav-collapsed,
body.menu-layout-side.side-nav-collapsed {
  grid-template-columns: var(--side-nav-w-collapsed) minmax(0, 1fr);
}

html.menu-layout-side .site-side-nav,
body.menu-layout-side .site-side-nav {
  display: flex;
  grid-column: 1;
  grid-row: 1 / -1;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  max-height: 100dvh;
  width: 100%;
  min-width: 0;
  z-index: 120;
  background: linear-gradient(165deg, #0d2a1a 0%, #14824a 55%, #0f6b38 100%);
  color: #fff;
  box-shadow: 4px 0 24px rgba(11, 36, 22, 0.18);
  overflow: hidden;
}

.site-side-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 18px 14px 20px;
  overflow-x: hidden;
  overflow-y: auto;
}

.site-side-nav__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.site-side-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  color: #fff;
}

.site-side-nav__brand:hover {
  color: #fff;
  opacity: 0.92;
}

.site-side-nav__brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.site-side-nav__brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.site-side-nav__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-side-nav__tag {
  font-size: 0.7rem;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-side-nav__collapse {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-side-nav__collapse:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-side-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.site-side-nav__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.site-side-nav__links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateX(2px);
}

.site-side-nav__icon {
  width: 1.25rem;
  text-align: center;
  opacity: 0.7;
  flex-shrink: 0;
}

.site-side-nav__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-side-nav__phone {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-side-nav__cta {
  text-align: center;
  background: var(--accent) !important;
  color: var(--primary-deep) !important;
  border: none;
}

html.menu-layout-side body.side-nav-collapsed .site-side-nav__brand-text,
html.menu-layout-side body.side-nav-collapsed .site-side-nav__label,
html.menu-layout-side body.side-nav-collapsed .site-side-nav__tag,
html.menu-layout-side body.side-nav-collapsed .site-side-nav__phone,
html.menu-layout-side body.side-nav-collapsed .site-side-nav__cta,
body.menu-layout-side.side-nav-collapsed .site-side-nav__brand-text,
body.menu-layout-side.side-nav-collapsed .site-side-nav__label,
body.menu-layout-side.side-nav-collapsed .site-side-nav__tag,
body.menu-layout-side.side-nav-collapsed .site-side-nav__phone,
body.menu-layout-side.side-nav-collapsed .site-side-nav__cta {
  display: none;
}

html.menu-layout-side body.side-nav-collapsed .site-side-nav__links a,
body.menu-layout-side.side-nav-collapsed .site-side-nav__links a {
  justify-content: center;
  padding: 12px 8px;
}

html.menu-layout-side body.side-nav-collapsed .site-side-nav__collapse span,
body.menu-layout-side.side-nav-collapsed .site-side-nav__collapse span {
  display: inline-block;
  transform: rotate(180deg);
}

html.menu-layout-side .site-header,
html.menu-layout-side main,
html.menu-layout-side .site-footer,
html.menu-layout-side .floating-call,
body.menu-layout-side .site-header,
body.menu-layout-side main,
body.menu-layout-side .site-footer,
body.menu-layout-side .floating-call {
  grid-column: 2;
  min-width: 0;
  max-width: 100%;
}

html.menu-layout-side .site-header,
body.menu-layout-side .site-header {
  display: none;
}

html.menu-layout-side .hero,
html.menu-layout-side .legal-page,
html.menu-layout-side .page-hero,
body.menu-layout-side .hero,
body.menu-layout-side .legal-page,
body.menu-layout-side .page-hero {
  padding-top: 48px;
}

html.menu-layout-side .floating-call,
body.menu-layout-side .floating-call {
  right: 20px;
  left: auto;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(243, 247, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  flex-shrink: 0;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
}

.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 4px 2px;
}

.nav-desktop a:hover {
  color: var(--primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  line-height: 1.15;
}

.header-phone {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--primary-deep);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--primary);
}

.header-mail {
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.header-mail:hover {
  color: var(--primary-dark);
}

.btn-header {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.88rem;
  flex: 0 0 auto;
}

.btn-light-on-light {
  background: var(--surface);
  color: var(--primary-deep);
  border: 1px solid var(--border);
}

.btn-light-on-light:hover {
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-deep);
}

.btn-accent:hover {
  filter: brightness(1.05);
  color: var(--primary-deep);
}

.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-deep);
}

.btn-light:hover {
  background: #fff;
  color: var(--primary-deep);
}

.btn-lg {
  min-height: 52px;
  padding: 0 24px;
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
}

/* Hero — full bleed */

.hero {
  position: relative;
  min-height: min(100vh, 820px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 48px) 0 72px;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 14, 0.35) 0%, rgba(8, 22, 14, 0.55) 42%, rgba(8, 22, 14, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 22, 14, 0.55) 0%, rgba(8, 22, 14, 0.15) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.brand-hero {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
}

/* Trust */

.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-item strong {
  font-size: 0.98rem;
}

.trust-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Sections */

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

section {
  padding: 72px 0;
}

.section-header {
  margin-bottom: 28px;
}

.section-header.center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-header h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.feature-list,
.segment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  margin-top: 2px;
}

.check::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.feature-list strong,
.segment-list strong {
  display: block;
  margin-bottom: 2px;
}

.feature-list span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-actions,
.about-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

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

.about-actions {
  margin-top: 4px;
}

.photo-frame {
  margin: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-frame--product {
  background: #fff;
}

.photo-frame--product picture,
.photo-frame--product img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.photo-frame figcaption {
  padding: 12px 16px 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Products */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.product-tile {
  position: relative;
  background: #111;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  color: #fff;
  text-decoration: none;
  display: block;
  isolation: isolate;
}

.product-tile picture,
.product-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #fff;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px 18px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 28, 18, 0.55) 28%, rgba(8, 22, 14, 0.92) 100%);
  transform: translateY(42%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: grid;
  gap: 8px;
  align-content: end;
  min-height: 58%;
}

.product-tile-overlay h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  color: #fff;
}

.product-tile-overlay p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease 0.05s;
}

.product-tile-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent, #f0b429);
  color: #142016;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}

.product-tile:hover,
.product-tile:focus-visible {
  border-color: rgba(20, 130, 74, 0.55);
  color: #fff;
}

.product-tile:hover picture img,
.product-tile:focus-visible picture img,
.product-tile:hover img,
.product-tile:focus-visible img {
  transform: scale(1.06);
  filter: brightness(0.82);
}

.product-tile:hover .product-tile-overlay,
.product-tile:focus-visible .product-tile-overlay {
  transform: translateY(0);
}

.product-tile:hover .product-tile-overlay p,
.product-tile:focus-visible .product-tile-overlay p {
  max-height: 6em;
  opacity: 1;
}

.product-tile:hover .product-tile-cta,
.product-tile:focus-visible .product-tile-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .product-tile-overlay {
    transform: translateY(0);
    background: linear-gradient(180deg, transparent 0%, rgba(8, 22, 14, 0.88) 55%, rgba(8, 22, 14, 0.96) 100%);
  }

  .product-tile-overlay p {
    max-height: 6em;
    opacity: 1;
  }

  .product-tile-cta {
    opacity: 1;
    transform: none;
  }
}

.product-tile-body {
  padding: 14px 16px 18px;
}

.product-tile h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.product-tile p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.wholesale-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.wholesale-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.wholesale-strip img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.wholesale-copy {
  background: var(--primary-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.wholesale-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
}

.wholesale-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.wholesale-copy .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

/* Advantages */

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

.advantage-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.advantage-featured {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(20, 130, 74, 0.08), transparent 55%),
    var(--surface);
  border-color: rgba(20, 130, 74, 0.28);
}

.advantage-featured h3 {
  font-family: var(--display);
  font-size: 1.2rem;
}

.advantage-featured p {
  max-width: 52rem;
  font-size: 1rem;
}

.advantage-docs {
  grid-column: 1 / -1;
  border-color: rgba(20, 130, 74, 0.35);
  background: linear-gradient(135deg, rgba(20, 130, 74, 0.06), var(--surface));
}

.advantage-docs h3 {
  font-family: var(--display);
  font-size: 1.15rem;
}

.advantage-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.advantage-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Process */

.process-grid {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: none;
}

.process-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.process-grid h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.process-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.wide-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.wide-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 40%;
}

/* CTA */

.cta-band {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(20, 130, 74, 0.35), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(232, 184, 74, 0.18), transparent 45%),
    var(--primary-deep);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

/* FAQ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.accordion-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-chevron {
  transform: rotate(-135deg);
}

.accordion-panel {
  padding: 0 18px 16px;
  color: var(--text-muted);
}

.accordion-panel p {
  margin: 0;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.contact-card,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.contact-card h3,
.lead-form h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 1.2rem;
}

.contact-phone {
  display: block;
  margin-bottom: 8px;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.contact-mail {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-card > p {
  color: var(--text-muted);
  margin: 12px 0 18px;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.contact-actions .btn {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  justify-content: center;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  color: var(--primary-deep);
  border: 1.5px solid rgba(20, 130, 74, 0.45);
}

.btn-outline:hover {
  background: rgba(20, 130, 74, 0.08);
  color: var(--primary-dark);
  border-color: var(--primary);
}

.consent-label {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
  line-height: 1.4;
  color: var(--text-muted);
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.consent-label a {
  font-weight: 700;
}

.requisites {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.requisites h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 1.15rem;
}

.requisites-grid {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.requisites-grid > div {
  display: grid;
  gap: 2px;
}

.requisites-grid dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.requisites-grid dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-word;
}

.requisites-wide {
  grid-column: 1 / -1;
}

.footer-inn {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-hours {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.delivery-facts {
  margin-top: 24px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
}

.delivery-facts p {
  margin: 0;
  color: var(--text-muted);
}

.inner-page {
  padding: calc(var(--header-h) + 32px) 0 64px;
}

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 18px;
}

.answer-lead {
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.product-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.product-gallery .photo-frame {
  margin: 0;
}

.product-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.photo-frame picture,
.product-tile picture,
.wholesale-strip picture,
.hero-media picture,
.wide-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-frame picture img,
.product-tile picture img,
.wholesale-strip picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame--product picture,
.photo-frame--product picture img {
  height: auto;
  object-fit: contain;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .product-page-grid {
    grid-template-columns: 1fr;
  }
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(20, 130, 74, 0.35);
  border-color: var(--primary);
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

.form-status.is-ok {
  color: var(--primary-dark);
}

.form-status.is-err {
  color: #a11f1f;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Footer */

.site-footer {
  background: #0d1f15;
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}

.footer-brand p {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
}

.footer-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-col h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.metrika-informer {
  display: inline-flex;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
  opacity: 0.92;
}

.metrika-informer:hover {
  opacity: 1;
}

.metrika-informer img {
  display: block;
  width: 88px;
  height: 31px;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-deep);
  font-weight: 800;
  box-shadow: none;
}

.floating-call:hover {
  color: var(--primary-deep);
  filter: brightness(1.05);
}

/* Motion */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */

@media (max-width: 1200px) {
  .nav-desktop a:nth-child(n + 4) {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions .btn-header {
    display: none;
  }

  html.menu-layout-side body,
  body.menu-layout-side,
  html.menu-layout-side body.side-nav-collapsed,
  body.menu-layout-side.side-nav-collapsed {
    display: block;
    grid-template-columns: none;
  }

  html.menu-layout-side .site-side-nav,
  body.menu-layout-side .site-side-nav {
    display: none !important;
  }

  html.menu-layout-side .site-header,
  html.menu-layout-side main,
  html.menu-layout-side .site-footer,
  body.menu-layout-side .site-header,
  body.menu-layout-side main,
  body.menu-layout-side .site-footer {
    grid-column: auto;
  }

  html.menu-layout-side .site-header,
  body.menu-layout-side .site-header {
    display: block;
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
  }

  html.menu-layout-side .hero,
  html.menu-layout-side .legal-page,
  html.menu-layout-side .page-hero,
  body.menu-layout-side .hero,
  body.menu-layout-side .legal-page,
  body.menu-layout-side .page-hero {
    padding-top: calc(var(--header-h) + 32px);
  }

  html.menu-layout-side .site-header .brand,
  body.menu-layout-side .site-header .brand {
    display: flex;
  }

  html.menu-layout-side .site-header .menu-toggle,
  body.menu-layout-side .site-header .menu-toggle {
    display: block;
  }

  html.menu-layout-side .site-header .header-inner,
  body.menu-layout-side .site-header .header-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 980px) {
  .trust-grid,
  .product-grid,
  .advantage-grid,
  .process-grid,
  .wholesale-strip,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .wholesale-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .header-contacts {
    align-items: flex-end;
  }

  .header-phone {
    font-size: 0.8rem;
  }

  .header-mail {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 56px;
  }

  .hero-actions .btn,
  .about-actions .btn,
  .contact-actions .btn,
  .cta-actions .btn {
    white-space: normal;
    text-align: center;
  }

  .trust-grid,
  .product-grid,
  .advantage-grid,
  .process-grid,
  .wholesale-strip,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .floating-call {
    display: inline-flex;
  }

  section {
    padding: 56px 0;
  }
}
