:root {
  color-scheme: light;
  --ink: #172022;
  --muted: #5b6a70;
  --line: #d6dedf;
  --surface: #f5f7f6;
  --brand: #176b5d;
  --brand-dark: #0f463d;
  --accent: #d89b2b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 15px;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 56px clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 32, 33, 0.88), rgba(14, 32, 33, 0.55)),
    url("https://images.unsplash.com/photo-1621905251918-48416bd8575a?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: inherit;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button--primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.button--primary:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.section,
.page-title,
.contact-layout {
  padding: 72px clamp(18px, 5vw, 64px);
}

.section__head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card p,
.contact-box p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.feature-list article:first-child {
  padding-top: 0;
}

.feature-list span,
.steps strong {
  color: var(--brand);
  font-weight: 700;
}

.feature-list p,
.steps p,
.spec-table span {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.steps strong {
  display: inline-flex;
  margin-bottom: 28px;
  font-size: 18px;
}

.spec-table {
  border-top: 1px solid var(--line);
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(280px, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: start;
  padding: 72px clamp(18px, 5vw, 64px);
  background: var(--surface);
}

.checks {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 18px;
}

.checks li {
  position: relative;
  padding-left: 30px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.page-title {
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-box,
.form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form {
  display: grid;
  gap: 18px;
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 560px;
  }

  .grid--three,
  .section--split,
  .steps,
  .band,
  .contact-layout,
  .spec-table div {
    grid-template-columns: 1fr;
  }

  .steps article {
    min-height: 0;
  }
}

/* Home page based on the INFOSKIDKA discount layout */
.deal-home {
  --deal-green: #29b42f;
  --deal-green-dark: #15931f;
  --deal-text: #24242b;
  --deal-muted: #737582;
  --deal-line: #e4e8ec;
  --deal-soft: #f6f8f7;
  --deal-card: #ffffff;
  min-width: 320px;
  color: var(--deal-text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

.deal-home h1,
.deal-home h2,
.deal-home h3,
.deal-home p {
  margin: 0;
  letter-spacing: 0;
}

.deal-header {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 32px;
  height: 92px;
  padding: 0 clamp(28px, 4.8vw, 62px);
  border-bottom: 1px solid var(--deal-line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
}

.deal-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--deal-text);
  text-decoration: none;
}

.deal-logo__mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: #fff;
  background: var(--deal-green);
  border-radius: 11px;
  font-size: 21px;
  font-weight: 800;
  transform: rotate(-26deg);
}

.deal-logo__mark + span {
  display: grid;
  gap: 2px;
}

.deal-logo strong {
  font-size: 22px;
  line-height: 1;
}

.deal-logo strong span {
  color: var(--deal-green);
}

.deal-logo small {
  color: var(--deal-muted);
  font-size: 12px;
}

.deal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3vw, 48px);
  color: #242630;
  font-size: 14px;
}

.deal-nav a,
.deal-section__head a,
.footer-cols a {
  color: inherit;
  text-decoration: none;
}

.deal-nav a:hover,
.deal-section__head a:hover,
.footer-cols a:hover {
  color: var(--deal-green);
}

.deal-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.deal-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #11131b;
}

.deal-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deal-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  height: 42px;
  border: 1px solid var(--deal-green);
  border-radius: 6px;
  color: var(--deal-green-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.deal-hero {
  display: grid;
  grid-template-columns: minmax(590px, 0.88fr) minmax(420px, 1.12fr);
  min-height: 530px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255,255,255,0.9) 45%, rgba(255,255,255,0) 61%),
    linear-gradient(180deg, #f2f6fb 0%, #fff 100%);
}

.deal-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding: 88px 0 60px clamp(32px, 5vw, 62px);
}

.deal-hero h1 {
  max-width: 610px;
  font-size: clamp(44px, 4.25vw, 58px);
  line-height: 1.12;
  font-weight: 800;
}

.deal-hero p {
  max-width: 455px;
  margin-top: 29px;
  color: var(--deal-muted);
  font-size: 18px;
  line-height: 1.7;
}

.deal-hero__row {
  display: flex;
  align-items: center;
  gap: 54px;
  margin-top: 47px;
}

.deal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 206px;
  height: 66px;
  border-radius: 7px;
  background: var(--deal-green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(41, 180, 47, 0.22);
}

.deal-proof {
  display: flex;
  align-items: center;
  gap: 17px;
}

.deal-proof > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f0f2f2;
  color: #1d2027;
  font-size: 31px;
}

.deal-proof small {
  color: var(--deal-muted);
  font-size: 13px;
  line-height: 1.45;
}

.deal-hero__visual {
  position: relative;
  min-height: 530px;
}

.home-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 19% 49%, rgba(255,255,255,0.95) 0 4%, rgba(255,255,255,0.65) 18%, rgba(255,255,255,0) 37%),
    linear-gradient(180deg, #cfdbea 0%, #eef4f6 42%, #c9d2c1 43%, #9bb37b 58%, #d7d9d4 58%, #c4c7c5 100%);
}

.scene-house {
  position: absolute;
  right: 57px;
  top: 58px;
  width: 620px;
  height: 330px;
  transform: scale(0.94);
  transform-origin: top right;
}

.scene-roof {
  position: absolute;
  left: 34px;
  top: 0;
  width: 560px;
  height: 130px;
  background: linear-gradient(145deg, #20272f 0%, #3c4652 64%, #1b2027 100%);
  clip-path: polygon(9% 100%, 36% 12%, 70% 5%, 98% 100%);
  box-shadow: inset 0 -15px 0 rgba(0,0,0,0.12);
}

.scene-wall {
  position: absolute;
  top: 118px;
  height: 200px;
  background: #f4f0e8;
  box-shadow: 0 28px 45px rgba(51, 57, 62, 0.15);
}

.scene-wall--left {
  left: 66px;
  width: 225px;
}

.scene-wall--right {
  left: 290px;
  width: 260px;
}

.scene-wall--left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 76px;
  height: 100%;
  background: linear-gradient(90deg, #ad6d32, #cf823c);
}

.scene-window {
  position: absolute;
  z-index: 2;
  background: linear-gradient(135deg, #1a252f, #40576b);
  border: 7px solid #141820;
  box-shadow: inset 22px 0 0 rgba(255,255,255,0.08);
}

.scene-window--one {
  left: 150px;
  top: 152px;
  width: 93px;
  height: 74px;
}

.scene-window--two {
  left: 365px;
  top: 151px;
  width: 86px;
  height: 82px;
}

.scene-chimney {
  position: absolute;
  right: 72px;
  top: 28px;
  width: 46px;
  height: 92px;
  background: #2a3038;
}

.scene-fence {
  position: absolute;
  right: -24px;
  bottom: 77px;
  width: 725px;
  height: 127px;
  background:
    repeating-linear-gradient(90deg, #232931 0 38px, transparent 38px 55px),
    repeating-linear-gradient(0deg, transparent 0 28px, #232931 28px 40px);
  filter: drop-shadow(0 10px 16px rgba(40,45,48,0.18));
}

.scene-barrier {
  position: absolute;
  left: 94px;
  bottom: 20px;
  width: 500px;
  height: 150px;
}

.scene-barrier__base {
  position: absolute;
  left: 84px;
  bottom: 0;
  width: 64px;
  height: 124px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #eef0f1, #59636d);
  box-shadow: 0 11px 24px rgba(0,0,0,0.25);
}

.scene-barrier__base::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 13px;
  width: 46px;
  height: 28px;
  border-radius: 4px;
  background: #303842;
  border-top: 9px solid #ee5c2f;
}

.scene-barrier__arm {
  position: absolute;
  left: 126px;
  top: 43px;
  width: 405px;
  height: 17px;
  background:
    repeating-linear-gradient(100deg, #fff 0 48px, #f22a2a 48px 63px, #fff 63px 104px);
  border-radius: 10px;
  transform: rotate(-2deg);
  box-shadow: 0 5px 11px rgba(0,0,0,0.18);
}

.scene-tree {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #d8ead0 0 9%, #7ca566 10% 55%, #4f7e42 56% 100%);
  opacity: 0.78;
  filter: blur(0.5px);
}

.scene-tree--one {
  left: 42px;
  top: 88px;
  width: 170px;
  height: 210px;
}

.scene-tree--two {
  right: 10px;
  top: 165px;
  width: 92px;
  height: 220px;
  border-radius: 45% 45% 12% 12%;
}

.deal-section {
  max-width: 1264px;
  margin: 0 auto;
  padding: 39px 32px 35px;
}

.deal-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.deal-section__head h2 {
  color: var(--deal-text);
  font-size: 28px;
  line-height: 1.2;
}

.deal-section__head a {
  color: var(--deal-green);
  font-size: 14px;
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 27px;
}

.category-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 216px;
  padding: 26px 18px;
  border: 1px solid var(--deal-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.category-card h3 {
  margin-top: 23px;
  font-size: 16px;
  line-height: 1.25;
}

.category-card p {
  margin-top: 9px;
  color: var(--deal-muted);
  font-size: 13px;
  line-height: 1.45;
}

.line-icon {
  position: relative;
  width: 73px;
  height: 64px;
  color: var(--deal-green);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.line-icon--gate::before {
  inset: 13px 8px 8px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, transparent 0 9px, currentColor 10px 12px);
}

.line-icon--gate::after {
  left: 7px;
  right: 7px;
  top: 9px;
  height: 42px;
  border-width: 0 2px;
}

.line-icon--fence::before {
  inset: 14px 9px 5px;
  border-top: 0;
  background: repeating-linear-gradient(90deg, transparent 0 10px, currentColor 10px 12px);
}

.line-icon--fence::after {
  left: 12px;
  right: 12px;
  top: 11px;
  height: 11px;
  border-width: 0 2px 2px;
  transform: skewX(-20deg);
}

.line-icon--roof::before {
  left: 8px;
  top: 23px;
  width: 54px;
  height: 37px;
  border-width: 2px 2px 0;
  transform: skewX(-25deg) rotate(-24deg);
}

.line-icon--roof::after {
  left: 16px;
  top: 33px;
  width: 49px;
  height: 21px;
  border-width: 2px 0 0;
  transform: rotate(-39deg);
}

.line-icon--barrier::before {
  left: 13px;
  top: 17px;
  width: 19px;
  height: 39px;
}

.line-icon--barrier::after {
  left: 30px;
  top: 25px;
  width: 48px;
  height: 8px;
  border-left: 0;
  background: currentColor;
}

.line-icon--house::before {
  left: 13px;
  top: 26px;
  width: 45px;
  height: 35px;
}

.line-icon--house::after {
  left: 11px;
  top: 7px;
  width: 43px;
  height: 43px;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.line-icon--tree::before {
  left: 24px;
  top: 9px;
  width: 34px;
  height: 42px;
  border-radius: 50%;
}

.line-icon--tree::after {
  left: 38px;
  top: 48px;
  width: 36px;
  height: 16px;
  border-width: 0 0 2px 2px;
}

.hot-mark {
  display: inline-block;
  width: 17px;
  height: 21px;
  margin-left: 6px;
  border-radius: 10px 10px 12px 12px;
  background: linear-gradient(180deg, #ff8a00, #fa3025);
  vertical-align: -3px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  min-height: 384px;
  padding: 14px 14px 20px;
  border: 1px solid var(--deal-line);
  border-radius: 8px;
  background: #fff;
}

.offer-image {
  position: relative;
  height: 158px;
  overflow: hidden;
  border-radius: 7px;
  background: #e9ecef;
}

.offer-image > span {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  min-width: 59px;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--deal-green);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.offer-image--gate {
  background:
    linear-gradient(90deg, rgba(30,44,38,0.1), rgba(30,44,38,0.04)),
    repeating-linear-gradient(90deg, #1f272d 0 18px, #303a42 18px 36px, transparent 36px 42px),
    linear-gradient(180deg, #bfd3b6, #eef0eb 55%, #c3c7c2);
}

.offer-image--fence {
  background:
    repeating-linear-gradient(90deg, #242a31 0 24px, #3c444c 24px 44px, #161a20 44px 48px),
    linear-gradient(180deg, #b8d2a7, #e8eee2);
}

.offer-image--roof {
  background:
    repeating-linear-gradient(135deg, #1d2630 0 24px, #59606a 24px 42px, #202832 42px 64px),
    linear-gradient(180deg, #c7d3df, #8b929b);
}

.offer-image--barrier {
  background: linear-gradient(180deg, #eef3f7, #e1e6ea);
}

.offer-image--barrier::before {
  content: "";
  position: absolute;
  left: 36px;
  bottom: 21px;
  width: 45px;
  height: 112px;
  border-radius: 7px;
  background: linear-gradient(180deg, #202832, #666e75);
}

.offer-image--barrier::after {
  content: "";
  position: absolute;
  left: 67px;
  top: 54px;
  width: 170px;
  height: 12px;
  border-radius: 8px;
  background: repeating-linear-gradient(100deg, #fff 0 38px, #eb2222 38px 50px, #fff 50px 82px);
  transform: rotate(-3deg);
}

.offer-image--materials {
  background:
    linear-gradient(0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.1)),
    repeating-linear-gradient(0deg, #d6bc7b 0 16px, #c2a35e 16px 21px, #e1c98e 21px 38px),
    linear-gradient(90deg, #ece5db, #d2c4ae);
}

.offer-card h3 {
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.17;
}

.offer-card p {
  min-height: 56px;
  margin-top: 13px;
  color: var(--deal-muted);
  font-size: 14px;
  line-height: 1.45;
}

.offer-card footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 34px;
  color: #252832;
  font-size: 12px;
}

.offer-card small {
  color: var(--deal-muted);
}

.subscribe-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1fr) 180px;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  min-height: 150px;
  margin: 38px auto 0;
  padding: 31px 31px;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 92% 22%, rgba(41,180,47,0.18), rgba(41,180,47,0) 22%),
    linear-gradient(100deg, #f0f8f1, #fff 55%, #ecf8ef);
}

.subscribe-panel h2 {
  font-size: 27px;
}

.subscribe-panel p {
  margin-top: 13px;
  color: var(--deal-muted);
  font-size: 16px;
  line-height: 1.55;
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr 176px;
  gap: 12px;
  align-items: center;
}

.subscribe-form input {
  width: 100%;
  height: 55px;
  border: 1px solid var(--deal-line);
  border-radius: 7px;
  padding: 0 20px;
  color: var(--deal-text);
  font: inherit;
}

.subscribe-form button {
  height: 55px;
  border: 0;
  border-radius: 7px;
  background: var(--deal-green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.mail-illustration {
  position: relative;
  width: 146px;
  height: 118px;
  margin-left: auto;
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(135deg, #20a92d, #45ca4c);
  transform: rotate(-8deg);
}

.mail-illustration::before {
  content: "";
  position: absolute;
  left: 21px;
  top: -22px;
  width: 103px;
  height: 78px;
  border-radius: 8px;
  background: #f5f6f5;
  transform: rotate(13deg);
  box-shadow: 0 10px 24px rgba(30,70,40,0.16);
}

.mail-illustration::after {
  content: "";
  position: absolute;
  inset: 43px 0 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.24) 0 48%, transparent 48% 100%);
  clip-path: polygon(0 0, 50% 42%, 100% 0, 100% 100%, 0 100%);
}

.mail-illustration span {
  position: absolute;
  left: 58px;
  top: 3px;
  z-index: 1;
  color: var(--deal-green);
  font-size: 48px;
  font-weight: 800;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 48px auto 50px;
  padding: 0 32px;
}

.benefits article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f1f5f1;
  color: var(--deal-green);
  font-weight: 800;
}

.benefits h3 {
  margin-bottom: 7px;
  font-size: 15px;
}

.benefits p {
  color: var(--deal-muted);
  font-size: 13px;
  line-height: 1.4;
}

.deal-footer {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) 1fr minmax(190px, 0.45fr);
  gap: 46px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 32px 48px;
  border-top: 1px solid var(--deal-line);
}

.deal-footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 145px;
}

.deal-footer__brand > small,
.socials small {
  color: #9aa0a8;
  font-size: 12px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
}

.footer-cols h3,
.socials h3 {
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-cols a {
  display: block;
  margin-top: 9px;
  color: var(--deal-muted);
  font-size: 12px;
}

.socials {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.socials div {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f3f4;
  color: #1e2026;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .deal-header {
    grid-template-columns: 1fr;
    height: auto;
    gap: 18px;
    padding-block: 18px;
  }

  .deal-nav,
  .deal-actions {
    justify-content: flex-start;
  }

  .deal-hero {
    grid-template-columns: 1fr;
  }

  .deal-hero__copy {
    padding-right: 32px;
  }

  .deal-hero__visual {
    min-height: 420px;
  }

  .category-grid,
  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefits,
  .deal-footer,
  .subscribe-panel {
    grid-template-columns: 1fr 1fr;
  }

  .mail-illustration {
    display: none;
  }
}

@media (max-width: 720px) {
  .deal-nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .deal-hero h1 {
    font-size: 40px;
  }

  .deal-hero__copy {
    padding: 62px 24px 48px;
  }

  .deal-hero__row,
  .deal-actions,
  .deal-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .deal-hero__row {
    gap: 22px;
  }

  .category-grid,
  .offer-grid,
  .benefits,
  .subscribe-panel,
  .subscribe-form,
  .deal-footer,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .deal-section,
  .benefits,
  .deal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .scene-house {
    right: -190px;
    transform: scale(0.78);
    transform-origin: top right;
  }
}

/* Pixel-close homepage from glavnaya.png */
.pixel-home {
  --px-green: #27b735;
  --px-green-dark: #1aa82a;
  --px-text: #24242c;
  --px-muted: #717581;
  --px-line: #e6e9ee;
  --px-soft: #f5f8f6;
  margin: 0;
  min-width: 320px;
  background: #fff;
  color: var(--px-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
}

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

.pixel-home h1,
.pixel-home h2,
.pixel-home h3,
.pixel-home p {
  margin: 0;
  letter-spacing: 0;
}

.pixel-home a {
  color: inherit;
  text-decoration: none;
}

.pixel-page {
  width: min(100%, 1200px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.pixel-header {
  display: grid;
  grid-template-columns: 255px 1fr 240px;
  align-items: center;
  height: 72px;
  padding: 0 56px;
  border-bottom: 1px solid var(--px-line);
  background: rgba(255, 255, 255, 0.98);
}

.pixel-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.pixel-logo__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--px-green);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  transform: rotate(-27deg);
}

.pixel-logo__text {
  display: grid;
  gap: 2px;
}

.pixel-logo strong {
  color: #1f222a;
  font-size: 20px;
  line-height: 1;
}

.pixel-logo strong span {
  color: var(--px-green);
}

.pixel-logo small {
  color: var(--px-muted);
  font-size: 10px;
  line-height: 1.2;
}

.pixel-nav {
  display: flex;
  justify-content: center;
  gap: 43px;
  color: #20232b;
  font-size: 12px;
}

.pixel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 21px;
}

.pixel-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.pixel-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #11131a;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pixel-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 36px;
  border: 1px solid var(--px-green);
  border-radius: 5px;
  color: var(--px-green-dark);
  font-size: 12px;
  font-weight: 700;
}

.pixel-hero {
  position: relative;
  height: 418px;
  overflow: hidden;
  background: #fff;
}

.pixel-hero__copy {
  position: relative;
  z-index: 2;
  width: 560px;
  padding: 70px 0 0 56px;
}

.pixel-hero h1 {
  color: #24242b;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.28;
}

.pixel-hero p {
  width: 392px;
  margin-top: 20px;
  color: var(--px-muted);
  font-size: 15px;
  line-height: 1.72;
}

.pixel-hero__row {
  display: flex;
  align-items: center;
  gap: 49px;
  margin-top: 35px;
}

.pixel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 181px;
  height: 55px;
  border-radius: 5px;
  background: var(--px-green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(39, 183, 53, 0.19);
}

.pixel-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pixel-proof > span {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: #f0f2f2;
  color: #22252c;
  font-size: 28px;
}

.pixel-proof small {
  color: var(--px-muted);
  font-size: 12px;
  line-height: 1.45;
}

.pixel-hero__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 604px;
  height: 418px;
  object-fit: cover;
  object-position: left top;
}

.pixel-section {
  width: 100%;
  padding: 35px 56px 0;
}

.pixel-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 27px;
}

.pixel-section__head h2 {
  color: #25262e;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.pixel-section__head a {
  color: var(--px-green);
  font-size: 12px;
  font-weight: 700;
}

.pixel-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.pixel-category-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 158px;
  padding: 32px 14px 18px;
  border: 1px solid var(--px-line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.pixel-category-card:hover {
  border-color: rgba(37, 176, 45, 0.45);
  box-shadow: 0 10px 28px rgba(35, 43, 48, 0.08);
  transform: translateY(-2px);
}

.pixel-category-card h3 {
  margin-top: 21px;
  color: #292b33;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.pixel-category-card p {
  margin-top: 8px;
  color: var(--px-muted);
  font-size: 11px;
  line-height: 1.35;
}

.pixel-line-icon {
  position: relative;
  width: 58px;
  height: 48px;
  color: var(--px-green);
}

.pixel-line-icon::before,
.pixel-line-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.pixel-line-icon--gate::before {
  inset: 12px 5px 5px;
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, transparent 0 8px, currentColor 9px 10px);
}

.pixel-line-icon--gate::after {
  left: 4px;
  right: 4px;
  top: 8px;
  height: 34px;
  border-width: 0 2px;
}

.pixel-line-icon--fence::before {
  inset: 12px 6px 4px;
  border-top: 0;
  background: repeating-linear-gradient(90deg, transparent 0 8px, currentColor 9px 10px);
}

.pixel-line-icon--fence::after {
  left: 8px;
  right: 8px;
  top: 8px;
  height: 10px;
  border-width: 0 2px 2px;
  transform: skewX(-18deg);
}

.pixel-line-icon--roof::before {
  left: 7px;
  top: 18px;
  width: 42px;
  height: 31px;
  border-width: 2px 2px 0;
  transform: skewX(-25deg) rotate(-24deg);
}

.pixel-line-icon--roof::after {
  left: 14px;
  top: 26px;
  width: 38px;
  height: 17px;
  border-width: 2px 0 0;
  transform: rotate(-39deg);
}

.pixel-line-icon--barrier::before {
  left: 10px;
  top: 11px;
  width: 18px;
  height: 37px;
}

.pixel-line-icon--barrier::after {
  left: 27px;
  top: 19px;
  width: 43px;
  height: 7px;
  border-left: 0;
  background: currentColor;
}

.pixel-line-icon--house::before {
  left: 12px;
  top: 21px;
  width: 34px;
  height: 27px;
}

.pixel-line-icon--house::after {
  left: 10px;
  top: 5px;
  width: 35px;
  height: 35px;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.pixel-line-icon--tree::before {
  left: 17px;
  top: 3px;
  width: 28px;
  height: 36px;
  border-radius: 50%;
}

.pixel-line-icon--tree::after {
  left: 27px;
  top: 36px;
  width: 31px;
  height: 14px;
  border-width: 0 0 2px 2px;
}

.pixel-section--offers {
  padding-top: 47px;
}

.pixel-offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pixel-offer-card {
  display: block;
  min-height: 330px;
  padding: 12px 12px 16px;
  border: 1px solid var(--px-line);
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.pixel-offer-card:hover {
  border-color: rgba(37, 176, 45, 0.45);
  box-shadow: 0 12px 30px rgba(35, 43, 48, 0.09);
  transform: translateY(-2px);
}

.pixel-offer-card > img {
  display: block;
  width: 100%;
  height: 138px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.pixel-offer-card h3 {
  margin-top: 16px;
  color: #282a33;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.19;
}

.pixel-offer-card p {
  min-height: 50px;
  margin-top: 10px;
  color: var(--px-muted);
  font-size: 12px;
  line-height: 1.45;
}

.pixel-offer-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 28px;
  color: #282a32;
  font-size: 10px;
}

.pixel-offer-card small {
  color: var(--px-muted);
  white-space: nowrap;
}

.pixel-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.pixel-brand-card {
  min-height: 78px;
  padding: 18px 16px;
  border: 1px solid var(--px-line);
  border-radius: 8px;
  background: #fff;
  color: #24262e;
  text-decoration: none;
}

.pixel-brand-card strong,
.pixel-brand-card span {
  display: block;
}

.pixel-brand-card strong {
  font-size: 14px;
  font-weight: 800;
}

.pixel-brand-card span {
  margin-top: 6px;
  color: var(--px-muted);
  font-size: 11px;
}

.pixel-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pixel-article-card {
  min-height: 258px;
  padding: 12px;
  border: 1px solid var(--px-line);
  border-radius: 8px;
  background: #fff;
  color: #25262e;
  text-decoration: none;
}

.pixel-article-card img {
  display: block;
  width: 100%;
  height: 112px;
  border-radius: 6px;
  object-fit: cover;
}

.pixel-article-card span {
  display: block;
  margin-top: 13px;
  color: var(--px-green);
  font-size: 10px;
  font-weight: 800;
}

.pixel-article-card h3 {
  margin-top: 6px;
  color: #282a33;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.pixel-article-card p {
  margin-top: 8px;
  color: var(--px-muted);
  font-size: 12px;
  line-height: 1.45;
}

.pixel-mail {
  position: relative;
  display: grid;
  grid-template-columns: 370px 1fr 188px;
  align-items: center;
  gap: 26px;
  min-height: 137px;
  margin: 48px 56px 0;
  padding: 0 28px;
  overflow: hidden;
  border-radius: 9px;
  background: linear-gradient(100deg, #eef8f0 0%, #fff 58%, #eef9f0 100%);
}

.pixel-mail h2 {
  color: #25262e;
  font-size: 22px;
  font-weight: 800;
}

.pixel-mail p {
  margin-top: 11px;
  color: var(--px-muted);
  font-size: 13px;
  line-height: 1.5;
}

.pixel-mail__form {
  display: grid;
  grid-template-columns: 1fr 136px;
  gap: 0;
}

.pixel-mail__form input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--px-line);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  padding: 0 18px;
  color: var(--px-text);
  font: inherit;
  font-size: 12px;
}

.pixel-mail__form button {
  height: 46px;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--px-green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.pixel-mail__image {
  display: block;
  width: 176px;
  height: 115px;
  object-fit: contain;
}

.pixel-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 39px;
  padding: 46px 56px 43px;
}

.pixel-benefits article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.pixel-benefits span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f2f6f3;
  color: var(--px-green);
  font-size: 18px;
  font-weight: 800;
}

.pixel-benefits h3 {
  margin-bottom: 6px;
  color: #24262e;
  font-size: 12px;
  font-weight: 800;
}

.pixel-benefits p {
  color: var(--px-muted);
  font-size: 11px;
  line-height: 1.35;
}

.pixel-footer {
  display: grid;
  grid-template-columns: 285px 1fr 232px;
  gap: 48px;
  margin: 0 28px;
  padding: 36px 28px 42px;
  border-top: 1px solid var(--px-line);
}

.pixel-footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 122px;
}

.pixel-footer__brand > small,
.pixel-socials small {
  color: #9ca1a9;
  font-size: 10px;
}

.pixel-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pixel-footer h3 {
  margin-bottom: 13px;
  color: #24262e;
  font-size: 12px;
  font-weight: 800;
}

.pixel-footer a:not(.pixel-logo) {
  display: block;
  margin-top: 8px;
  color: var(--px-muted);
  font-size: 10px;
  text-decoration: none;
}

.pixel-socials {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pixel-socials div {
  display: flex;
  gap: 12px;
}

.pixel-socials a {
  display: grid !important;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 !important;
  border-radius: 50%;
  background: #f1f3f4;
  color: #20222a !important;
  font-size: 10px !important;
  font-weight: 800;
}

@media (max-width: 980px) {
  .pixel-header {
    grid-template-columns: 1fr;
    height: auto;
    gap: 18px;
    padding: 18px 28px;
  }

  .pixel-nav,
  .pixel-actions {
    justify-content: flex-start;
  }

  .pixel-hero {
    height: auto;
    padding-bottom: 360px;
  }

  .pixel-hero__copy {
    width: auto;
    padding: 54px 28px 0;
  }

  .pixel-hero__image {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 360px;
  }

  .pixel-category-grid,
  .pixel-offer-grid,
  .pixel-brand-grid,
  .pixel-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pixel-section,
  .pixel-benefits {
    padding-left: 28px;
    padding-right: 28px;
  }

  .pixel-mail,
  .pixel-footer,
  .pixel-benefits {
    grid-template-columns: 1fr 1fr;
  }

  .pixel-mail {
    margin-left: 28px;
    margin-right: 28px;
    padding: 24px;
  }

  .pixel-mail__image {
    display: none;
  }
}

@media (max-width: 640px) {
  .pixel-nav {
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pixel-hero h1 {
    font-size: 36px;
  }

  .pixel-hero p {
    width: auto;
  }

  .pixel-hero__row,
  .pixel-section__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .pixel-hero__row {
    gap: 22px;
  }

  .pixel-category-grid,
  .pixel-offer-grid,
  .pixel-brand-grid,
  .pixel-article-grid,
  .pixel-mail,
  .pixel-mail__form,
  .pixel-benefits,
  .pixel-footer,
  .pixel-footer__cols {
    grid-template-columns: 1fr;
  }

  .pixel-mail__form input {
    border-right: 1px solid var(--px-line);
    border-radius: 6px;
  }

  .pixel-mail__form button {
    margin-top: 10px;
    border-radius: 6px;
  }
}
