:root {
  --green-950: #17350d;
  --green-800: #245c17;
  --green-600: #3f8a22;
  --green-300: #b7e86a;
  --yellow-500: #f3cb36;
  --yellow-200: #fff2ad;
  --white: #ffffff;
  --ink: #102009;
  --glass: rgba(255, 255, 255, 0.76);
  --line: rgba(255, 255, 255, 0.62);
  --shadow: rgba(32, 63, 13, 0.18);
  font-family:
    "Manrope",
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23245c17' stroke-opacity='.13' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M22 38h34M104 30h18M88 118h36M34 122h18'/%3E%3Cpath d='M126 54l12 12M32 82l14-14'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.18'%3E%3Ccircle cx='76' cy='42' r='3'/%3E%3Ccircle cx='132' cy='112' r='3'/%3E%3Ccircle cx='28' cy='144' r='2.4'/%3E%3C/g%3E%3C/svg%3E"),
    #edf8d8;
  overflow-x: hidden;
}

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

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1220px, calc(100% - 42px));
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  pointer-events: none;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(174px, 17vw, 230px);
  flex: 0 0 auto;
  padding: 7px 13px 8px;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 17px;
  background: linear-gradient(145deg, #317ce6 0%, #1f5fc8 100%);
  box-shadow:
    0 16px 34px rgba(15, 59, 130, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  pointer-events: auto;
  overflow: hidden;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover {
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-dock {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.dock-button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: var(--white);
  background: #2f9d45;
  box-shadow:
    0 16px 30px rgba(24, 62, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px);
  transition:
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 240ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.dock-button:hover {
  filter: saturate(1.08) brightness(1.04);
  box-shadow:
    0 18px 34px rgba(24, 62, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.dock-button:active {
  transform: scale(0.97);
}

.dock-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.dock-button img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.dock-button.phone {
  background: linear-gradient(145deg, #42b05d 0%, #17863a 100%);
}

.dock-button.max {
  background: linear-gradient(145deg, #745cff 0%, #3d77ff 48%, #18c9ff 100%);
  box-shadow:
    0 16px 30px rgba(47, 79, 206, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dock-button.max img {
  width: 28px;
  height: 28px;
}

.dock-button.max:hover {
  box-shadow:
    0 18px 34px rgba(47, 79, 206, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.dock-button.whatsapp {
  background: linear-gradient(145deg, #2fd66e 0%, #128c4a 100%);
}

.dock-button.whatsapp img,
.dock-button.telegram img {
  width: 28px;
  height: 28px;
}

.dock-button.telegram {
  background: linear-gradient(145deg, #35b9ff 0%, #168ad8 100%);
  box-shadow:
    0 16px 30px rgba(22, 138, 216, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dock-button.telegram svg {
  fill: currentColor;
  stroke-width: 1.7;
}

.dock-button.telegram:hover {
  box-shadow:
    0 18px 34px rgba(22, 138, 216, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.message-float {
  position: fixed;
  right: max(18px, calc(18px + env(safe-area-inset-right, 0px)));
  bottom: max(18px, calc(18px + env(safe-area-inset-bottom, 0px)));
  z-index: 25;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: #17350d;
  background: linear-gradient(145deg, #fff6b8 0%, #f3cb36 100%);
  box-shadow:
    0 18px 42px rgba(32, 63, 13, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.message-float:hover {
  filter: brightness(1.04) saturate(1.04);
  transform: translateY(-2px);
}

.message-float svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.snap-shell {
  min-height: 100dvh;
  scroll-snap-type: y mandatory;
}

.page {
  position: relative;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  scroll-snap-align: start;
  isolation: isolate;
}

.hero {
  display: grid;
  align-items: center;
  padding: clamp(112px, 12vh, 150px) clamp(22px, 5vw, 78px) clamp(34px, 6vh, 72px);
}

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

.hero-media::before {
  content: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 13% 50%;
  transform: scale(1.015);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at 17% 23%, rgba(250, 255, 238, 0.96) 0%, rgba(250, 255, 238, 0.86) 22%, rgba(250, 255, 238, 0.28) 43%, rgba(250, 255, 238, 0) 61%),
    linear-gradient(180deg, rgba(255, 250, 203, 0.18) 0%, rgba(97, 150, 41, 0.02) 54%, rgba(29, 66, 13, 0.12) 100%);
}

.hero-wash {
  position: absolute;
  inset: auto -12% -22% -10%;
  z-index: -1;
  height: 46%;
  background: radial-gradient(circle at 18% 38%, rgba(246, 209, 55, 0.42), transparent 42%),
    radial-gradient(circle at 70% 64%, rgba(101, 176, 44, 0.34), transparent 48%);
  filter: blur(42px);
  opacity: 0.9;
}

.sun-field {
  position: absolute;
  right: 5vw;
  bottom: 6vh;
  z-index: -1;
  width: min(34vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 222, 78, 0.34), rgba(255, 222, 78, 0) 66%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(500px, 100%);
  align-self: start;
  margin-top: clamp(6px, 2.2vh, 22px);
  animation: heroIn 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -34px -42px -38px -30px;
  z-index: -1;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(22px);
}

.hero h1 {
  max-width: 14.8ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3.35rem, 5.95vw, 6.35rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.91;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.86),
    0 14px 34px rgba(255, 255, 255, 0.72);
  text-wrap: balance;
}

.hero p {
  max-width: 510px;
  margin: clamp(16px, 2.4vh, 24px) 0 0;
  color: rgba(16, 32, 9, 0.78);
  font-size: clamp(1.2rem, 1.78vw, 1.58rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.36;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 24px rgba(255, 255, 255, 0.7);
  text-wrap: balance;
}

.tasks {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  padding: clamp(104px, 12vh, 136px) clamp(22px, 5vw, 78px) clamp(28px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 12% 18%, rgba(255, 238, 130, 0.54), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(146, 222, 83, 0.42), transparent 36%),
    linear-gradient(135deg, #f8ffe6 0%, #dff3b8 48%, #f7e78c 100%);
  background-attachment: fixed;
}

.tasks-copy {
  max-width: 520px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 18px;
  border: 1px solid rgba(63, 138, 34, 0.24);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(32, 63, 13, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.tasks h2 {
  max-width: 11.5ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3.35rem, 5.95vw, 6.35rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.tasks p {
  max-width: 510px;
  margin: clamp(16px, 2.5vh, 26px) 0 0;
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(1.2rem, 1.78vw, 1.58rem);
  font-weight: 720;
  line-height: 1.34;
}

.tasks-gallery {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(190px, 30vh));
  gap: clamp(12px, 1.4vw, 18px);
  min-height: min(640px, 72vh);
}

.task-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 60px rgba(32, 63, 13, 0.18);
}

.task-card-large {
  grid-row: span 2;
}

.task-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.task-card-large img {
  object-position: 54% 50%;
}

.task-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  content: "";
  background: linear-gradient(180deg, rgba(16, 32, 9, 0) 0%, rgba(16, 32, 9, 0.72) 100%);
}

.task-card span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: #fffbe8;
  font-size: clamp(0.98rem, 1.28vw, 1.25rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.attachments {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(660px, 1.38fr);
  grid-template-rows: auto auto;
  gap: clamp(16px, 3vh, 30px) clamp(26px, 4vw, 62px);
  align-content: center;
  align-items: end;
  padding: clamp(104px, 12vh, 136px) clamp(22px, 5vw, 78px) clamp(28px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 12% 18%, rgba(255, 238, 130, 0.54), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(146, 222, 83, 0.42), transparent 36%),
    linear-gradient(135deg, #f8ffe6 0%, #dff3b8 48%, #f7e78c 100%);
  background-attachment: fixed;
}

.attachments-copy {
  display: block;
  grid-column: 1;
  grid-row: 1;
  max-width: 520px;
  width: 100%;
}

.attachments h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3.35rem, 5.95vw, 6.35rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.attachments p {
  max-width: 540px;
  margin: clamp(16px, 2.5vh, 26px) 0 0;
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(1.2rem, 1.78vw, 1.58rem);
  font-weight: 720;
  line-height: 1.34;
}

.carousel-actions {
  display: flex;
  grid-column: 1;
  grid-row: 2;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  margin-top: 0;
}

.carousel-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 16px 34px rgba(32, 63, 13, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.carousel-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.attachments-gallery {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  gap: clamp(12px, 1.35vw, 18px);
  width: calc(100% + clamp(22px, 5vw, 78px));
  height: min(620px, 69vh);
  min-height: 0;
  margin-right: calc(clamp(22px, 5vw, 78px) * -1);
  padding: 0 clamp(22px, 5vw, 78px) 16px 0;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.attachments-gallery::-webkit-scrollbar {
  display: none;
}

.attachment-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 0 0 clamp(250px, 21vw, 312px);
  flex-direction: column;
  padding: clamp(8px, 0.9vw, 11px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 60px rgba(32, 63, 13, 0.18);
  scroll-snap-align: start;
}

.attachment-card-wide {
  flex-basis: clamp(250px, 21vw, 312px);
}

.attachment-photo {
  position: relative;
  display: grid;
  min-height: 0;
  flex: 0 0 auto;
  place-items: center;
  margin: 0;
  aspect-ratio: 941 / 1672;
  overflow: hidden;
  border-radius: clamp(18px, 2.4vw, 31px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 250, 209, 0.62), transparent 46%),
    linear-gradient(180deg, rgba(246, 255, 226, 0.82), rgba(221, 243, 184, 0.72));
}

.attachment-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.attachment-card::after {
  content: none;
}

.attachment-caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: clamp(8px, 0.9vw, 11px) 1px 1px;
  padding: clamp(10px, 1vw, 13px) clamp(12px, 1.15vw, 15px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: clamp(17px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 32px rgba(255, 255, 255, 0.72),
    0 16px 30px rgba(32, 63, 13, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.attachment-caption strong {
  color: var(--green-950);
  font-size: clamp(0.94rem, 1.08vw, 1.12rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.03;
  text-shadow:
    0 1px 0 #fff,
    0 10px 18px rgba(255, 255, 255, 0.95);
}

.attachment-caption span {
  color: rgba(16, 32, 9, 0.84);
  font-size: clamp(0.92rem, 1.06vw, 1.12rem);
  font-weight: 850;
  line-height: 1.12;
  text-shadow:
    0 1px 0 #fff,
    0 8px 16px rgba(255, 255, 255, 0.92);
}

.value {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(104px, 12vh, 136px) clamp(22px, 5vw, 78px) clamp(28px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 18% 16%, rgba(255, 238, 130, 0.5), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(146, 222, 83, 0.42), transparent 38%),
    linear-gradient(135deg, #f8ffe6 0%, #dff3b8 48%, #f7e78c 100%);
  background-attachment: fixed;
}

.value-copy {
  max-width: 600px;
}

.value h2 {
  max-width: 13.2ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3.1rem, 5.6vw, 5.9rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.value-copy p {
  max-width: 560px;
  margin: clamp(16px, 2.5vh, 26px) 0 0;
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(1.15rem, 1.62vw, 1.42rem);
  font-weight: 720;
  line-height: 1.34;
}

.value-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: clamp(22px, 3vh, 34px);
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--green-950);
  background: linear-gradient(145deg, #fff6b8 0%, #f3cb36 100%);
  box-shadow:
    0 18px 42px rgba(32, 63, 13, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.015em;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.value-button:hover {
  filter: brightness(1.04) saturate(1.04);
  transform: translateY(-2px);
}

.value-button:active {
  transform: scale(0.98);
}

.value-points {
  display: grid;
  gap: clamp(10px, 1.5vh, 15px);
  width: min(760px, 100%);
  justify-self: end;
}

.value-point {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: clamp(12px, 1.5vw, 18px);
  align-items: center;
  min-height: 92px;
  padding: clamp(12px, 1.5vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(22px, 2.2vw, 32px);
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    0 24px 58px rgba(32, 63, 13, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  opacity: 0;
  transform: translateX(72px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay);
}

.value-point.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.value-point:nth-child(even) {
  margin-left: clamp(18px, 4vw, 62px);
}

.value-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 19px;
  color: var(--green-950);
  background: linear-gradient(145deg, rgba(255, 246, 184, 0.95), rgba(243, 203, 54, 0.86));
  box-shadow:
    0 14px 28px rgba(32, 63, 13, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.value-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.value-point p {
  max-width: 34rem;
  margin: 0;
  color: rgba(16, 32, 9, 0.82);
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.production {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  grid-template-rows: auto 1fr;
  gap: clamp(18px, 3.2vh, 34px) clamp(26px, 4vw, 62px);
  align-content: center;
  align-items: end;
  padding: clamp(104px, 12vh, 136px) clamp(22px, 5vw, 78px) clamp(28px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 18% 18%, rgba(255, 238, 130, 0.5), transparent 34%),
    radial-gradient(circle at 78% 76%, rgba(146, 222, 83, 0.42), transparent 38%),
    linear-gradient(135deg, #f8ffe6 0%, #dff3b8 48%, #f7e78c 100%);
  background-attachment: fixed;
}

.production-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 560px;
}

.production h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3.35rem, 6vw, 6.5rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.production-copy p {
  max-width: 540px;
  margin: clamp(16px, 2.5vh, 26px) 0 0;
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(1.12rem, 1.54vw, 1.34rem);
  font-weight: 720;
  line-height: 1.34;
}

.production-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: clamp(22px, 3vh, 34px);
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--green-950);
  background: linear-gradient(145deg, #fff6b8 0%, #f3cb36 100%);
  box-shadow:
    0 18px 42px rgba(32, 63, 13, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.015em;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.production-button:hover {
  filter: brightness(1.04) saturate(1.04);
  transform: translateY(-2px);
}

.production-media {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.18fr 0.82fr;
  gap: clamp(10px, 1.2vw, 14px);
  height: min(390px, 40vh);
  min-height: 0;
}

.production-shot {
  position: relative;
  display: block;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(20px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 20px 44px rgba(32, 63, 13, 0.14);
}

.production-shot-main {
  grid-column: span 2;
  min-height: 0;
}

.production-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.production-shot-main img {
  object-position: 50% 48%;
}

.production-shot:nth-child(2) img {
  object-position: 50% 50%;
}

.production-shot:nth-child(3) img {
  object-position: 52% 50%;
}

.production-shot::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, rgba(16, 32, 9, 0) 0%, rgba(16, 32, 9, 0.72) 100%);
}

.production-shot figcaption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  color: #fffbe8;
  font-size: clamp(0.82rem, 0.98vw, 1rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.production-tag {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 30px rgba(32, 63, 13, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: -0.015em;
}

.tag-weld {
  left: 18px;
  bottom: 18px;
}

.tag-hydro {
  right: 18px;
  bottom: 18px;
}

.tag-assembly {
  top: 18px;
  right: 18px;
}

.production-proof {
  display: grid;
  grid-column: 2;
  grid-row: 2;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.35vw, 16px);
}

.proof-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  align-items: start;
  min-height: 132px;
  padding: clamp(12px, 1.4vw, 17px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(20px, 2vw, 28px);
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    0 20px 44px rgba(32, 63, 13, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.proof-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  color: var(--green-950);
  background: linear-gradient(145deg, rgba(255, 246, 184, 0.95), rgba(243, 203, 54, 0.86));
  box-shadow:
    0 14px 28px rgba(32, 63, 13, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.proof-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.proof-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.proof-card p {
  margin: 7px 0 0;
  color: rgba(16, 32, 9, 0.72);
  font-size: clamp(0.82rem, 0.92vw, 0.95rem);
  font-weight: 750;
  line-height: 1.22;
}

.tech {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  grid-template-rows: auto 1fr;
  gap: clamp(18px, 3.2vh, 34px) clamp(26px, 4vw, 62px);
  align-content: center;
  align-items: end;
  padding: clamp(104px, 12vh, 136px) clamp(22px, 5vw, 78px) clamp(28px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 16% 18%, rgba(255, 238, 130, 0.5), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(146, 222, 83, 0.42), transparent 38%),
    linear-gradient(135deg, #f8ffe6 0%, #dff3b8 48%, #f7e78c 100%);
  background-attachment: fixed;
}

.tech-head {
  grid-column: 1;
  grid-row: 1;
  max-width: 620px;
}

.tech h2 {
  max-width: 11.4ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3.1rem, 5.8vw, 6.1rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.tech-head p {
  max-width: 560px;
  margin: clamp(16px, 2.5vh, 26px) 0 0;
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(1.08rem, 1.48vw, 1.32rem);
  font-weight: 720;
  line-height: 1.32;
}

.tech-layout {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: minmax(260px, 360px) minmax(360px, 1fr);
  gap: clamp(14px, 2.2vw, 28px);
  align-items: start;
}

.tech-stage {
  display: grid;
  gap: clamp(12px, 1.5vw, 18px);
  min-height: 0;
}

.tech-photo {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 60px rgba(32, 63, 13, 0.18);
}

.tech-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.tech-info {
  grid-column: 1 / -1;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(22px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 24px 58px rgba(32, 63, 13, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.tech-info span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(243, 203, 54, 0.32);
  font-size: 0.78rem;
  font-weight: 950;
}

.tech-info h3 {
  margin: 14px 0 0;
  color: var(--green-950);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.tech-info p {
  margin: 12px 0 0;
  color: rgba(16, 32, 9, 0.75);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 760;
  line-height: 1.28;
}

.tech-tabs {
  display: grid;
  gap: clamp(10px, 1.4vh, 14px);
  align-self: start;
}

.tech-tab {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  color: rgba(16, 32, 9, 0.76);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 16px 36px rgba(32, 63, 13, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  text-align: left;
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms cubic-bezier(0.16, 1, 0.3, 1),
    color 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-tab:hover {
  transform: translateX(4px);
}

.tech-tab.is-active {
  color: var(--green-950);
  background: rgba(255, 246, 184, 0.86);
}

.tech-tab span {
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--green-800);
}

.tech-tab strong {
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.equipment {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(24px, 4vw, 66px);
  align-items: center;
  padding: clamp(104px, 12vh, 136px) clamp(22px, 5vw, 78px) clamp(28px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 18% 22%, rgba(255, 238, 130, 0.5), transparent 34%),
    radial-gradient(circle at 78% 76%, rgba(63, 138, 34, 0.22), transparent 34%),
    linear-gradient(135deg, #f8ffe6 0%, #e4f4c0 52%, #fff0a8 100%);
  background-attachment: fixed;
}

.equipment-copy {
  max-width: 620px;
}

.equipment h2 {
  max-width: 12.2ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.8rem, 5.4vw, 5.35rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.equipment-copy p {
  max-width: 560px;
  margin: clamp(16px, 2.5vh, 26px) 0 0;
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(1.08rem, 1.48vw, 1.32rem);
  font-weight: 720;
  line-height: 1.32;
}

.equipment-button,
.catalog-back {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(18px, 3vh, 30px);
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: var(--green-950);
  background: linear-gradient(145deg, #fff6b8 0%, #f3cb36 100%);
  box-shadow:
    0 18px 42px rgba(32, 63, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  font-weight: 950;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.equipment-button:hover,
.catalog-back:hover {
  filter: brightness(1.04) saturate(1.04);
  transform: translateY(-2px);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(128px, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
  height: min(640px, 70vh);
  min-height: 0;
}

.equipment-card {
  position: relative;
  display: block;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(22px, 2.2vw, 34px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 22px 54px rgba(32, 63, 13, 0.14);
  isolation: isolate;
}

.equipment-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.equipment-card-asphalt img {
  object-position: 42% 52%;
}

.equipment-card-jaw img {
  object-position: 48% 52%;
}

.equipment-card-jaw-site img {
  object-position: 55% 52%;
}

.equipment-card-auger img {
  object-position: 48% 50%;
}

.equipment-card-excavator img {
  object-position: 58% 52%;
}

.equipment-card-mulcher img {
  object-position: 58% 50%;
}

.equipment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 20, 6, 0) 56%, rgba(10, 20, 6, 0.22) 100%),
    linear-gradient(90deg, rgba(255, 246, 184, 0.16), rgba(255, 246, 184, 0));
}

.reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(18px, 3.4vw, 48px);
  align-content: center;
  align-items: start;
  padding: clamp(104px, 12vh, 136px) clamp(22px, 5vw, 78px) clamp(28px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 16% 18%, rgba(255, 238, 130, 0.5), transparent 34%),
    radial-gradient(circle at 84% 78%, rgba(63, 138, 34, 0.24), transparent 36%),
    linear-gradient(135deg, #f8ffe6 0%, #e4f4c0 52%, #fff0a8 100%);
  background-attachment: fixed;
}

.reviews-head {
  max-width: 1000px;
  padding-top: clamp(8px, 2vh, 18px);
}

.reviews h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.8rem, 5.3vw, 5.6rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(9px, 1.2vh, 13px);
  min-height: 0;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(210px, 340px) 1fr;
  grid-template-rows: auto auto;
  gap: 0 clamp(12px, 1.4vw, 18px);
  align-items: center;
  min-height: 0;
  padding: 8px clamp(12px, 1.4vw, 16px) 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: clamp(22px, 2.2vw, 34px);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 22px 54px rgba(32, 63, 13, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.review-video {
  position: relative;
  grid-row: span 2;
  overflow: hidden;
  border-radius: clamp(16px, 1.6vw, 24px);
  background: #102009;
  aspect-ratio: 16 / 9;
}

.review-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.review-card h3 {
  align-self: end;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
}

.review-card p {
  align-self: start;
  margin: 5px 0 0;
  color: rgba(16, 32, 9, 0.7);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 800;
  line-height: 1.12;
}

.delivery {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vh, 34px);
  justify-content: space-between;
  padding: clamp(92px, 10vh, 120px) clamp(22px, 5vw, 78px) clamp(24px, 4vh, 44px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 16% 18%, rgba(255, 238, 130, 0.5), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(63, 138, 34, 0.2), transparent 36%),
    linear-gradient(135deg, #f8ffe6 0%, #e4f4c0 52%, #fff0a8 100%);
  background-attachment: fixed;
}

.delivery-copy {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.delivery h2 {
  max-width: none;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.delivery-copy > p {
  max-width: 560px;
  margin: clamp(16px, 2.3vh, 24px) 0 0;
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(1.08rem, 1.48vw, 1.32rem);
  font-weight: 760;
  line-height: 1.24;
}

.delivery-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vh, 34px) clamp(34px, 7vw, 96px);
  width: min(100%, 1060px);
  margin: 0 auto;
}

.delivery-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    0 16px 36px rgba(32, 63, 13, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.delivery-points article:nth-child(odd) {
  justify-self: start;
}

.delivery-points article:nth-child(even) {
  justify-self: end;
}

.delivery-points span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--green-950);
  background: rgba(243, 203, 54, 0.44);
  font-size: 0.86rem;
  font-weight: 950;
}

.delivery-points h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.delivery-points p {
  margin: 5px 0 0;
  color: rgba(16, 32, 9, 0.72);
  font-size: clamp(0.82rem, 0.95vw, 0.96rem);
  font-weight: 740;
  line-height: 1.18;
}

.delivery-photo {
  width: min(100%, 1060px);
  height: clamp(210px, 26vh, 300px);
  min-height: 0;
  margin: clamp(-14px, -1.4vh, -6px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: clamp(22px, 2.5vw, 34px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 60px rgba(32, 63, 13, 0.16);
}

.delivery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.order-process {
  --order-progress: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 4vh, 46px);
  padding: clamp(96px, 11vh, 126px) clamp(22px, 5vw, 78px) clamp(26px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 18% 16%, rgba(255, 238, 130, 0.56), transparent 34%),
    radial-gradient(circle at 78% 74%, rgba(63, 138, 34, 0.2), transparent 36%),
    linear-gradient(135deg, #f8ffe6 0%, #e4f4c0 52%, #fff0a8 100%);
  background-attachment: fixed;
}

.order-head,
.order-steps {
  width: min(100%, 1060px);
  margin: 0 auto;
}

.order-head h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(3rem, 5.3vw, 5.6rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vh, 14px);
}

.order-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  width: clamp(300px, 41vw, 468px);
  min-height: clamp(86px, 11vh, 112px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 18px 44px rgba(32, 63, 13, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transform: translateX(calc(var(--i) * clamp(44px, 10vw, 128px)));
  will-change: transform;
}

.order-step span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  color: var(--green-950);
  background: rgba(243, 203, 54, 0.48);
  font-size: 0.9rem;
  font-weight: 950;
}

.order-step h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
}

.order-step p {
  margin: 6px 0 0;
  color: rgba(16, 32, 9, 0.72);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 740;
  line-height: 1.15;
}

.lead {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(96px, 11vh, 126px) clamp(22px, 5vw, 78px) clamp(30px, 5vh, 58px);
  color: var(--green-950);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 18% 16%, rgba(255, 238, 130, 0.56), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(63, 138, 34, 0.2), transparent 36%),
    linear-gradient(135deg, #f8ffe6 0%, #e4f4c0 52%, #fff0a8 100%);
  background-attachment: fixed;
}

.lead-copy,
.lead-form {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(26px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 24px 58px rgba(32, 63, 13, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4.5vw, 58px);
}

.lead-copy > span {
  width: fit-content;
  min-height: 36px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(243, 203, 54, 0.38);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(243, 203, 54, 0.34);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lead h2 {
  max-width: 12ch;
  margin: clamp(22px, 4vh, 42px) 0 0;
  font-size: clamp(2.75rem, 5vw, 5.65rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.lead-copy p {
  max-width: 690px;
  margin: clamp(18px, 3vh, 34px) 0 0;
  color: rgba(16, 32, 9, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.36;
}

.lead-max {
  width: fit-content;
  min-height: 54px;
  margin-top: clamp(24px, 4vh, 42px);
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  font-weight: 950;
  text-decoration: none;
}

.lead-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2.3vh, 24px);
  padding: clamp(24px, 4vw, 54px);
}

.lead-form label {
  display: grid;
  gap: 9px;
  color: rgba(16, 32, 9, 0.72);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: clamp(58px, 7vh, 74px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 0 22px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(16, 32, 9, 0.42);
}

.lead-consent {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  gap: 12px !important;
  align-items: center;
  text-transform: uppercase;
}

.lead-consent input {
  width: 22px;
  height: 22px;
  accent-color: var(--yellow-500);
}

.lead-consent span,
.lead-consent a {
  color: rgba(16, 32, 9, 0.74);
  font-size: 0.82rem;
  font-weight: 950;
}

.lead-consent a {
  color: var(--green-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.lead-form button {
  min-height: clamp(58px, 7vh, 72px);
  border: 0;
  border-radius: 999px;
  color: var(--green-950);
  background: linear-gradient(135deg, #ffe873, #f3cb36);
  box-shadow: 0 18px 42px rgba(243, 203, 54, 0.28);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 950;
  cursor: pointer;
}

.contacts {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
  padding: clamp(96px, 11vh, 126px) clamp(22px, 4vw, 58px) clamp(30px, 5vh, 58px);
  background:
    url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2317350d' stroke-opacity='.1' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M28 44h46M126 38h26M98 136h44M34 128h22'/%3E%3Cpath d='M138 74l16 16M44 88l18-18'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.22'%3E%3Ccircle cx='86' cy='54' r='3.5'/%3E%3Ccircle cx='146' cy='124' r='3.5'/%3E%3Ccircle cx='32' cy='158' r='2.8'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 14% 18%, rgba(255, 238, 130, 0.56), transparent 34%),
    radial-gradient(circle at 84% 80%, rgba(63, 138, 34, 0.22), transparent 36%),
    linear-gradient(135deg, #f8ffe6 0%, #e4f4c0 52%, #fff0a8 100%);
  background-attachment: fixed;
}

.contacts-card {
  min-width: 0;
  padding: clamp(18px, 2.5vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(22px, 2.5vw, 34px);
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 24px 58px rgba(32, 63, 13, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contacts-card img {
  width: min(210px, 70%);
  height: auto;
  margin-bottom: clamp(22px, 4vh, 42px);
  filter: brightness(0) drop-shadow(0 10px 20px rgba(32, 63, 13, 0.12));
}

.contacts-card h2,
.contacts-card span {
  display: block;
  margin: 0 0 clamp(14px, 2.4vh, 24px);
  color: var(--green-950);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.contacts-card a,
.contacts-card p {
  display: block;
  margin: 0 0 14px;
  color: rgba(16, 32, 9, 0.74);
  font-size: clamp(0.96rem, 1.35vw, 1.18rem);
  font-weight: 800;
  line-height: 1.24;
  text-decoration: none;
}

.contacts-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-social {
  min-height: clamp(52px, 8vh, 70px);
  margin: 0 !important;
  padding: 8px 12px;
  display: grid !important;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--green-950) !important;
}

.contacts-social i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 950;
}

.contacts-social strong {
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 950;
}

.contacts-social.youtube i { background: #ff1f4f; }
.contacts-social.rutube i { background: #20265f; }
.contacts-social.dzen i { background: #777c75; }
.contacts-social.vk i { background: #258be6; }
.contacts-social.max i { background: linear-gradient(135deg, #4c70ff, #9770ff); }
.contacts-social.telegram i { background: #2aa8df; }

.catalog-page {
  min-height: 100%;
  overflow-x: hidden;
}

.catalog-page .site-header,
.privacy-page .site-header {
  pointer-events: auto;
}

.catalog-header {
  align-items: center;
}

.catalog-back {
  margin-top: 0;
  min-height: 48px;
  padding: 0 20px;
}

.catalog-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(118px, 14vh, 154px) 0 58px;
}

.catalog-hero {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.catalog-hero span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(243, 203, 54, 0.32);
  font-size: 0.78rem;
  font-weight: 950;
}

.catalog-hero h1 {
  max-width: 22ch;
  margin: 0 auto;
  color: var(--green-950);
  font-size: clamp(1.85rem, 3.8vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.catalog-hero p {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  font-weight: 720;
  line-height: 1.32;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
  margin-top: clamp(28px, 5vw, 54px);
}

.catalog-card {
  display: grid;
  grid-template-rows: 236px 1fr;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    0 18px 42px rgba(32, 63, 13, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.catalog-card img {
  width: 100%;
  height: 236px;
  object-fit: contain;
  object-position: center;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 246, 184, 0.54), rgba(255, 255, 255, 0.42));
}

.catalog-card div {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 154px;
  padding: 0 16px 18px;
}

.catalog-card span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(243, 203, 54, 0.28);
  font-size: 0.68rem;
  font-weight: 950;
}

.catalog-card h2 {
  margin: 10px 0 0;
  color: var(--green-950);
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.catalog-card p {
  margin: 8px 0 0;
  color: rgba(16, 32, 9, 0.72);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.24;
}

.catalog-card-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(145deg, #3f8a22 0%, #17350d 100%);
  box-shadow:
    0 14px 26px rgba(23, 53, 13, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-card-button:hover {
  filter: brightness(1.06) saturate(1.08);
  box-shadow:
    0 18px 32px rgba(23, 53, 13, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transform: translateY(-2px);
}

.catalog-modal[hidden] {
  display: none;
}

.catalog-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.catalog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 9, 0.48);
  backdrop-filter: blur(14px);
}

.catalog-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(690px, 100%);
  gap: 28px;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(26px, 3vw, 42px);
  background:
    url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23245c17' stroke-opacity='.1' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M22 38h34M98 30h18M82 112h34M30 118h18'/%3E%3Cpath d='M116 54l12 12M32 82l14-14'/%3E%3C/g%3E%3Cg fill='%23f3cb36' fill-opacity='.18'%3E%3Ccircle cx='72' cy='42' r='3'/%3E%3Ccircle cx='124' cy='108' r='3'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 255, 226, 0.94) 58%, rgba(255, 246, 184, 0.92) 100%);
  box-shadow:
    0 34px 100px rgba(10, 20, 6, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.catalog-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.catalog-modal__close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.catalog-modal__panel h2 {
  max-width: 600px;
  margin: 0 auto 4px;
  color: var(--green-950);
  font-size: clamp(2.05rem, 4.4vw, 3rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1;
  text-align: center;
}

.catalog-field {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.catalog-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--green-950);
  background: transparent;
  font-size: 1.16rem;
  font-weight: 800;
}

.catalog-field input::placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.catalog-flag {
  font-size: 1.28rem;
  line-height: 1;
}

.catalog-code {
  color: var(--green-950);
  font-size: 1.14rem;
  font-weight: 950;
}

.catalog-consent {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(16, 32, 9, 0.78);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.25;
}

.catalog-consent input {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  accent-color: var(--green-800);
}

.catalog-consent a {
  color: var(--green-800);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.catalog-submit {
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(145deg, #3f8a22 0%, #17350d 100%);
  box-shadow:
    0 18px 38px rgba(23, 53, 13, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 1.08rem;
  font-weight: 950;
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-submit:hover {
  background: linear-gradient(145deg, #4a9a27 0%, #1c4210 100%);
  transform: translateY(-1px);
}

body.is-modal-open {
  overflow: hidden;
}

.privacy-page {
  min-height: 100%;
  overflow-x: hidden;
}

.privacy-shell {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(118px, 14vh, 154px) 0 64px;
}

.privacy-content {
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 22px 58px rgba(32, 63, 13, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.privacy-content h1 {
  max-width: 24ch;
  margin: 0 0 clamp(24px, 4vw, 42px);
  color: var(--green-950);
  font-size: clamp(1.75rem, 3.6vw, 3.45rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.privacy-content h2 {
  margin: 28px 0 10px;
  color: var(--green-950);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.privacy-content p,
.privacy-content li {
  color: rgba(16, 32, 9, 0.76);
  font-size: clamp(0.98rem, 1.16vw, 1.08rem);
  font-weight: 720;
  line-height: 1.45;
}

.privacy-content p {
  margin: 8px 0;
}

.privacy-content ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.privacy-back {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--green-950);
  background: linear-gradient(145deg, #fff6b8 0%, #f3cb36 100%);
  font-size: 0.94rem;
  font-weight: 950;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 14px;
    width: calc(100% - 28px);
    gap: 12px;
  }

  .brand {
    width: clamp(150px, 25vw, 188px);
    padding: 6px 11px 7px;
    border-radius: 14px;
  }

  .contact-dock {
    gap: 7px;
  }

  .dock-button {
    width: 42px;
    height: 42px;
  }

  .dock-button svg {
    width: 20px;
    height: 20px;
  }

  .dock-button.max svg {
    width: 27px;
    height: 15px;
  }

  .dock-button img {
    width: 23px;
    height: 23px;
  }

  .dock-button.max img,
  .dock-button.whatsapp img,
  .dock-button.telegram img {
    width: 25px;
    height: 25px;
  }

  .hero {
    --hero-top-space: clamp(84px, 13.8vh, 96px);
    --hero-bottom-safe: max(34px, calc(20px + env(safe-area-inset-bottom, 0px)));

    align-items: start;
    min-height: 100dvh;
    height: 100dvh;
    padding: var(--hero-top-space) 18px var(--hero-bottom-safe);
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 58%;
    transform: none;
    filter: saturate(1.02);
  }

  .hero-media::before {
    content: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(250, 255, 238, 0.94) 0%, rgba(250, 255, 238, 0.76) 26%, rgba(250, 255, 238, 0.12) 50%, rgba(24, 52, 13, 0.1) 100%),
      linear-gradient(90deg, rgba(255, 247, 176, 0.18), rgba(82, 153, 34, 0.06));
  }

  .hero-content {
    position: relative;
    width: 100%;
    max-width: 24rem;
    margin-top: 0;
    max-height: calc(100dvh - var(--hero-top-space) - var(--hero-bottom-safe));
  }

  .hero-content::before {
    inset: -24px -18px -28px -18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.64);
    filter: blur(18px);
  }

  .hero h1 {
    max-width: 14.6ch;
    font-size: clamp(2.3rem, 10.6vw, 3.3rem);
    line-height: 0.96;
  }

  .hero p {
    max-width: 23rem;
    margin-top: 10px;
    font-size: clamp(1.08rem, 4.45vw, 1.24rem);
    line-height: 1.3;
  }

  .tasks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 12svh, 96px) 16px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .tasks-copy {
    max-width: 100%;
  }

  .section-kicker {
    min-height: 30px;
    padding: 7px 13px;
    font-size: 0.72rem;
  }

  .tasks h2 {
    max-width: 12.8ch;
    margin-top: 0;
    font-size: clamp(2.3rem, 10.6vw, 3.3rem);
    line-height: 0.94;
  }

  .tasks p {
    max-width: 23rem;
    margin-top: 10px;
    font-size: clamp(1.08rem, 4.45vw, 1.24rem);
    line-height: 1.25;
  }

  .tasks-gallery {
    width: 100%;
    min-height: 0;
    flex: 1 1 auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.12fr 0.88fr;
    gap: 9px;
  }

  .task-card {
    border-radius: 22px;
  }

  .task-card-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .task-card span {
    right: 12px;
    bottom: 11px;
    left: 12px;
    font-size: clamp(0.78rem, 3.1vw, 0.92rem);
  }

  .attachments {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 12svh, 96px) 16px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .attachments-copy {
    display: block;
    max-width: 100%;
  }

  .attachments h2 {
    max-width: 12.8ch;
    font-size: clamp(2.3rem, 10.6vw, 3.3rem);
    line-height: 0.94;
  }

  .attachments p {
    max-width: 23rem;
    margin: 10px 0 0;
    font-size: clamp(1.08rem, 4.45vw, 1.24rem);
    line-height: 1.25;
  }

  .carousel-actions {
    justify-content: flex-start;
    margin-top: -4px;
  }

  .carousel-button {
    width: 46px;
    height: 46px;
  }

  .attachments-gallery {
    width: calc(100% + 16px);
    height: auto;
    min-height: 0;
    flex: 1 1 auto;
    gap: 9px;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 10px;
  }

  .attachment-card {
    border-radius: 22px;
    flex: 0 0 min(50vw, 194px);
    padding: 7px;
  }

  .attachment-card-wide {
    flex-basis: min(50vw, 194px);
  }

  .attachment-photo {
    border-radius: 17px;
  }

  .attachment-caption {
    gap: 3px;
    margin-top: 7px;
    padding: 9px 10px 10px;
    border-radius: 15px;
  }

  .attachment-caption strong {
    font-size: clamp(0.82rem, 3.2vw, 0.94rem);
  }

  .attachment-caption span {
    font-size: clamp(0.76rem, 2.9vw, 0.9rem);
    line-height: 1.12;
  }

  .value {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 12svh, 96px) 16px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .value h2 {
    max-width: 12.8ch;
    font-size: clamp(2.3rem, 10.2vw, 3.2rem);
    line-height: 0.94;
  }

  .value-copy p {
    max-width: 23rem;
    margin-top: 10px;
    font-size: clamp(1rem, 4vw, 1.16rem);
    line-height: 1.23;
  }

  .value-button {
    min-height: 48px;
    margin-top: 14px;
    padding: 0 20px;
    font-size: 0.9rem;
  }

  .value-points {
    gap: 8px;
    width: 100%;
  }

  .value-point {
    grid-template-columns: 44px 1fr;
    gap: 10px;
    min-height: 70px;
    padding: 9px;
    border-radius: 18px;
    transform: translateX(42px);
  }

  .value-point:nth-child(even) {
    margin-left: 0;
  }

  .value-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .value-icon svg {
    width: 24px;
    height: 24px;
  }

  .value-point p {
    font-size: clamp(0.82rem, 3vw, 0.96rem);
    line-height: 1.12;
  }

  .production {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 12svh, 96px) 16px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .production h2 {
    max-width: 12.8ch;
    font-size: clamp(2.3rem, 10.2vw, 3.2rem);
    line-height: 0.94;
  }

  .production-copy p {
    max-width: 23rem;
    margin-top: 9px;
    font-size: clamp(0.94rem, 3.8vw, 1.08rem);
    line-height: 1.2;
  }

  .production-button {
    min-height: 44px;
    margin-top: 12px;
    padding: 0 18px;
    font-size: 0.86rem;
  }

  .production-media {
    width: 100%;
    height: min(280px, 33vh);
    min-height: 0;
    gap: 8px;
  }

  .production-shot {
    border-radius: 17px;
  }

  .production-shot-main {
    min-height: 0;
  }

  .production-shot:not(.production-shot-main) {
    min-height: 0;
  }

  .production-shot figcaption {
    right: 10px;
    bottom: 9px;
    left: 10px;
    font-size: 0.64rem;
  }

  .production-proof {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .proof-card {
    grid-template-columns: 38px 1fr;
    gap: 8px;
    min-height: 96px;
    padding: 9px;
    border-radius: 17px;
  }

  .proof-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .proof-icon svg {
    width: 22px;
    height: 22px;
  }

  .proof-card h3 {
    font-size: 0.74rem;
    line-height: 1.03;
  }

  .proof-card p {
    margin-top: 4px;
    font-size: 0.62rem;
    line-height: 1.14;
  }

  .tech {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 12svh, 96px) 16px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .tech h2 {
    max-width: 12.8ch;
    font-size: clamp(2.2rem, 9.6vw, 3rem);
    line-height: 0.94;
  }

  .tech-head p {
    max-width: 23rem;
    margin-top: 8px;
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    line-height: 1.18;
  }

  .tech-layout {
    display: grid;
    grid-template-columns: minmax(118px, 0.74fr) minmax(168px, 1fr);
    gap: 8px;
    width: 100%;
    min-height: 0;
  }

  .tech-stage {
    display: grid;
    gap: 8px;
    min-height: 0;
  }

  .tech-photo {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
  }

  .tech-photo {
    border-radius: 18px;
  }

  .tech-info {
    grid-column: 1 / -1;
    padding: 10px;
    border-radius: 17px;
  }

  .tech-info span {
    min-height: 24px;
    padding: 0 9px;
    font-size: 0.62rem;
  }

  .tech-info h3 {
    margin-top: 8px;
    font-size: 1.1rem;
    line-height: 0.96;
  }

  .tech-info p {
    margin-top: 7px;
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .tech-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    width: 100%;
  }

  .tech-tab {
    gap: 2px;
    padding: 8px 9px;
    border-radius: 15px;
  }

  .tech-tab:hover {
    transform: none;
  }

  .tech-tab span {
    font-size: 0.58rem;
  }

  .tech-tab strong {
    font-size: 0.72rem;
    line-height: 1.05;
  }

  .equipment {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 12svh, 96px) 16px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .equipment h2 {
    max-width: 12.8ch;
    font-size: clamp(2.2rem, 9.6vw, 3rem);
    line-height: 0.94;
  }

  .equipment-copy p {
    max-width: 23rem;
    margin-top: 8px;
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    line-height: 1.18;
  }

  .equipment-button {
    min-height: 44px;
    margin-top: 12px;
    padding: 0 18px;
    font-size: 0.86rem;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    height: auto;
    flex: 1 1 auto;
    min-height: 0;
  }

  .equipment-card {
    border-radius: 18px;
  }

  .reviews {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 12svh, 96px) 16px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .reviews h2 {
    max-width: 12.8ch;
    font-size: clamp(2rem, 8.6vw, 2.75rem);
    line-height: 0.94;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .review-card {
    grid-template-columns: minmax(170px, 46vw) 1fr;
    gap: 0 10px;
    width: 100%;
    min-height: 112px;
    padding: 6px 10px 6px 6px;
    border-radius: 18px;
  }

  .review-video {
    border-radius: 14px;
  }

  .review-card h3 {
    font-size: 0.98rem;
  }

  .review-card p {
    font-size: 0.78rem;
  }

  .delivery {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(16px, 2.2svh, 22px);
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(78px, 10svh, 90px) 12px max(18px, calc(16px + env(safe-area-inset-bottom, 0px)));
  }

  .delivery-copy {
    max-width: none;
  }

  .delivery h2 {
    max-width: none;
    font-size: clamp(2.15rem, 9.2vw, 2.9rem);
    line-height: 0.92;
  }

  .delivery-copy > p {
    max-width: 27ch;
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.14;
  }

  .delivery-photo {
    width: 100%;
    height: clamp(220px, 36svh, 340px);
    margin-top: 0;
    border-radius: 18px;
  }

  .delivery-photo img {
    height: 100%;
    object-position: 50% 50%;
  }

  .delivery-points {
    grid-template-columns: 1fr 1fr;
    gap: clamp(12px, 2svh, 18px) 10px;
    width: 100%;
    margin-top: 0;
  }

  .delivery-points article {
    grid-template-columns: 30px 1fr;
    gap: 7px;
    min-height: clamp(88px, 11svh, 112px);
    padding: 8px;
    border-radius: 16px;
  }

  .delivery-points span {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 0.66rem;
  }

  .delivery-points h3 {
    font-size: 0.76rem;
    line-height: 1.02;
  }

  .delivery-points p {
    margin-top: 4px;
    font-size: 0.64rem;
    line-height: 1.08;
  }

  .order-process {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(14px, 2.2svh, 22px);
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 11svh, 96px) 12px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .order-head,
  .order-steps {
    width: 100%;
  }

  .order-head h2 {
    max-width: 11.8ch;
    font-size: clamp(2.1rem, 9vw, 2.85rem);
    line-height: 0.92;
  }

  .order-steps {
    gap: clamp(6px, 1svh, 9px);
  }

  .order-step {
    grid-template-columns: 36px 1fr;
    gap: 9px;
    width: min(78vw, 340px);
    min-height: clamp(70px, 10.6svh, 88px);
    padding: 9px;
    border-radius: 17px;
    transform: translateX(calc(var(--i) * min(5.2vw, 24px)));
  }

  .order-step span {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 0.68rem;
  }

  .order-step h3 {
    font-size: 1rem;
  }

  .order-step p {
    margin-top: 4px;
    font-size: 0.68rem;
    line-height: 1.08;
  }

  .lead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(78px, 10svh, 90px) 12px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .lead-copy,
  .lead-form {
    border-radius: 22px;
  }

  .lead-copy {
    flex: 0 0 auto;
    padding: 18px;
  }

  .lead-copy > span {
    min-height: 30px;
    padding: 0 13px;
    font-size: 0.66rem;
  }

  .lead h2 {
    max-width: 12.4ch;
    margin-top: 14px;
    font-size: clamp(1.9rem, 8.1vw, 2.6rem);
    line-height: 0.95;
  }

  .lead-copy p {
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .lead-max {
    min-height: 40px;
    margin-top: 14px;
    padding: 0 18px;
    font-size: 0.82rem;
  }

  .lead-form {
    gap: 10px;
    padding: 16px;
  }

  .lead-form label {
    gap: 6px;
    font-size: 0.68rem;
  }

  .lead-form input[type="text"],
  .lead-form input[type="tel"] {
    min-height: 46px;
    border-radius: 16px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .lead-consent {
    gap: 9px !important;
  }

  .lead-consent input {
    width: 19px;
    height: 19px;
  }

  .lead-consent span,
  .lead-consent a {
    font-size: 0.62rem;
    line-height: 1.18;
  }

  .lead-form button {
    min-height: 48px;
    font-size: 0.86rem;
  }

  .contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(78px, 10svh, 90px) 12px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .contacts-card {
    padding: 12px;
    border-radius: 18px;
  }

  .contacts-main {
    grid-row: span 1;
  }

  .contacts-card img {
    width: 116px;
    margin-bottom: 10px;
  }

  .contacts-card h2,
  .contacts-card span {
    margin-bottom: 8px;
    font-size: 0.78rem;
  }

  .contacts-card a,
  .contacts-card p {
    margin-bottom: 6px;
    font-size: 0.68rem;
    line-height: 1.16;
  }

  .contacts-socials {
    gap: 6px;
  }

  .contacts-social {
    min-height: 38px;
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 13px;
  }

  .contacts-social i {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 0.58rem;
  }

  .contacts-social strong {
    font-size: 0.72rem;
  }

}

@media (max-width: 980px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .catalog-shell {
    width: min(100% - 28px, 560px);
    padding-top: 104px;
  }

  .catalog-back {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .catalog-hero h1 {
    max-width: 18ch;
    font-size: clamp(1.38rem, 7.2vw, 2.2rem);
    letter-spacing: -0.025em;
    line-height: 1.06;
  }

  .catalog-hero p {
    font-size: 1rem;
    line-height: 1.24;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .catalog-card {
    grid-template-rows: 168px 1fr;
    min-height: 318px;
    border-radius: 18px;
  }

  .catalog-card img {
    height: 168px;
    padding: 10px;
  }

  .catalog-card div {
    min-height: 150px;
    padding: 0 10px 12px;
  }

  .catalog-card h2 {
    font-size: 0.86rem;
    line-height: 1.08;
  }

  .catalog-card p {
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .catalog-card-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .catalog-modal {
    padding: 14px;
  }

  .catalog-modal__panel {
    gap: 18px;
    padding: 34px 18px 22px;
  }

  .catalog-modal__panel h2 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
    line-height: 1.1;
  }

  .catalog-field {
    min-height: 58px;
    padding: 0 16px;
  }

  .catalog-field input {
    font-size: 0.98rem;
  }

  .catalog-consent {
    align-items: flex-start;
    font-size: 0.84rem;
  }

  .catalog-consent input {
    width: 24px;
    height: 24px;
  }

  .catalog-submit {
    min-height: 56px;
  }

  .privacy-shell {
    width: min(100% - 28px, 560px);
    padding-top: 104px;
  }

  .privacy-content {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .privacy-content h1 {
    max-width: 20ch;
    font-size: clamp(1.32rem, 6.2vw, 2rem);
    letter-spacing: -0.025em;
    line-height: 1.08;
  }

  .privacy-content h2 {
    font-size: 1.14rem;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 0.92rem;
    line-height: 1.38;
  }
}

@media (max-width: 600px) {
  .site-header {
    left: 8px;
    width: min(374px, calc(100vw - 16px));
    max-width: calc(100vw - 16px);
    transform: none;
  }

  .brand {
    width: 146px;
    padding: 5px 9px 6px;
  }

  .dock-button {
    width: 36px;
    height: 36px;
  }

  .dock-button.max svg {
    width: 24px;
    height: 14px;
  }

  .dock-button img {
    width: 21px;
    height: 21px;
  }

  .dock-button.max img,
  .dock-button.whatsapp img,
  .dock-button.telegram img {
    width: 23px;
    height: 23px;
  }

  .message-float {
    width: 54px;
    height: 54px;
  }

  .message-float svg {
    width: 27px;
    height: 27px;
  }
}

@media (min-width: 760px) and (max-width: 900px) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(12, 23, 8, 0.22), rgba(12, 23, 8, 0.34)),
      radial-gradient(ellipse at 22% 22%, rgba(250, 255, 238, 0.76), rgba(250, 255, 238, 0.12) 54%, rgba(12, 23, 8, 0.18) 100%);
  }
}

@media (max-width: 430px) {
  .hero {
    --hero-top-space: clamp(76px, 13vh, 88px);
    --hero-bottom-safe: max(36px, calc(22px + env(safe-area-inset-bottom, 0px)));
  }

  .hero-media img {
    object-position: 50% 56%;
    height: 100%;
    transform: none;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(250, 255, 238, 0.92) 0%, rgba(250, 255, 238, 0.72) 25%, rgba(250, 255, 238, 0.08) 48%, rgba(24, 52, 13, 0.06) 100%),
      linear-gradient(90deg, rgba(255, 247, 176, 0.16), rgba(82, 153, 34, 0.05));
  }

  .hero h1 {
    max-width: 13.7ch;
    font-size: clamp(2.08rem, 9.6vw, 2.8rem);
  }

  .hero p {
    max-width: 23rem;
    font-size: 1.02rem;
    line-height: 1.22;
  }

  .hero h1 {
    max-width: 12.8ch;
    font-size: clamp(2.08rem, 9.6vw, 2.8rem);
  }

  .hero p {
    max-width: 23rem;
    margin-top: 9px;
    font-size: 1.02rem;
  }

  .tasks {
    gap: 13px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .tasks h2 {
    font-size: clamp(2.08rem, 9.6vw, 2.8rem);
  }

  .tasks p {
    font-size: 1.02rem;
  }

  .tasks-gallery {
    gap: 8px;
  }

  .attachments {
    gap: 13px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .attachments h2 {
    font-size: clamp(2.08rem, 9.6vw, 2.8rem);
  }

  .attachments p {
    margin-left: 0;
    font-size: 1.02rem;
  }

  .attachments-gallery {
    gap: 8px;
  }

  .value {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    min-height: 100dvh;
    height: 100dvh;
    padding: clamp(82px, 12svh, 96px) 14px max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
  }

  .value h2 {
    max-width: 12.8ch;
    font-size: clamp(2.08rem, 9.2vw, 2.72rem);
    line-height: 0.94;
  }

  .value-copy p {
    max-width: 23rem;
    margin-top: 9px;
    font-size: 0.98rem;
    line-height: 1.22;
  }

  .value-button {
    min-height: 46px;
    margin-top: 14px;
    padding: 0 20px;
    font-size: 0.9rem;
  }

  .value-points {
    gap: 8px;
    width: 100%;
  }

  .value-point {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    min-height: 68px;
    padding: 9px;
    border-radius: 18px;
    transform: translateX(42px);
  }

  .value-point:nth-child(even) {
    margin-left: 0;
  }

  .value-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .value-icon svg {
    width: 23px;
    height: 23px;
  }

  .value-point p {
    font-size: 0.82rem;
    line-height: 1.12;
  }

  .attachment-card {
    flex-basis: min(50vw, 194px);
    padding: 6px;
  }

  .attachment-caption {
    padding: 8px 9px 9px;
  }
}

@media (max-width: 430px) and (max-height: 700px) {
  .hero {
    --hero-top-space: clamp(70px, 12vh, 80px);
    --hero-bottom-safe: max(32px, calc(18px + env(safe-area-inset-bottom, 0px)));
  }

  .hero h1 {
    font-size: clamp(1.86rem, 8.6vw, 2.32rem);
    line-height: 0.96;
  }

  .hero p {
    max-width: 21rem;
    margin-top: 8px;
    font-size: 0.92rem;
    line-height: 1.24;
  }

  .tasks {
    gap: 10px;
    padding-top: clamp(68px, 11svh, 78px);
  }

  .tasks h2 {
    margin-top: 0;
    font-size: clamp(1.86rem, 8.6vw, 2.32rem);
  }

  .tasks p {
    margin-top: 7px;
    font-size: 0.92rem;
  }

  .task-card {
    border-radius: 18px;
  }

  .task-card span {
    font-size: 0.72rem;
  }

  .attachments {
    gap: 10px;
    padding-top: clamp(68px, 11svh, 78px);
  }

  .attachments h2 {
    font-size: clamp(1.86rem, 8.6vw, 2.32rem);
  }

  .attachments p {
    margin-top: 7px;
    font-size: 0.92rem;
  }

  .attachment-card {
    border-radius: 18px;
  }

  .attachment-photo {
    border-radius: 14px;
  }

  .attachment-caption {
    margin-top: 6px;
    padding: 7px 8px 8px;
    border-radius: 13px;
  }

  .attachment-caption strong {
    font-size: 0.78rem;
  }

  .attachment-caption span {
    font-size: 0.72rem;
  }
}

@media (max-width: 430px) and (max-height: 600px) {
  .hero {
    --hero-top-space: clamp(62px, 10.5vh, 70px);
    --hero-bottom-safe: max(30px, calc(16px + env(safe-area-inset-bottom, 0px)));
  }

  .hero h1 {
    max-width: 12.8ch;
    font-size: clamp(1.72rem, 7.8vw, 2.05rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
  }

  .hero p {
    max-width: 20rem;
    margin-top: 7px;
    font-size: 0.84rem;
    line-height: 1.2;
  }
}

@supports (height: 100svh) {
  @media (max-width: 820px) {
    .hero {
      --hero-top-space: clamp(84px, 13.8svh, 96px);

      min-height: 100svh;
      height: 100svh;
    }

    .hero-content {
      max-height: calc(100svh - var(--hero-top-space) - var(--hero-bottom-safe));
    }
  }

  @media (max-width: 430px) {
    .hero {
      --hero-top-space: clamp(76px, 13svh, 88px);
    }
  }

  @media (max-width: 430px) and (max-height: 700px) {
    .hero {
      --hero-top-space: clamp(70px, 12svh, 80px);
    }
  }

  @media (max-width: 430px) and (max-height: 600px) {
    .hero {
      --hero-top-space: clamp(62px, 10.5svh, 70px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
