* {
  box-sizing: border-box;
}

:root {
  --green: #69b51b;
  --green-dark: #4f9510;
  --black: #070707;
  --text: #101010;
  --muted: #666;
  --line: #e8e8e8;
  --soft: #f7f7f7;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

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

/* HEADER */
.topbar {
  position: sticky;
  top: 0;
  z-index: 99;
  min-height: 96px;
  padding: 14px 7vw;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.logo img {
  width: 140px;
}

.menu {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.menu a {
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
}

.top-buttons {
  display: flex;
  gap: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}

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

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 24px rgba(105,181,27,.24);
}

.btn-outline,
.btn-white {
  background: #fff;
  color: var(--text);
  border-color: var(--green);
}

.big {
  min-width: 200px;
  min-height: 58px;
}

.cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* SCRATCH IMAGES */
.scratch {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.scratch-left {
  width: 360px;
  left: -150px;
  top: 120px;
  opacity: .55;
  transform: rotate(-12deg) scaleX(-1);
}

.scratch-hero {
  width: 720px;
  right: -60px;
  top: 110px;
  opacity: .78;
  transform: rotate(-7deg);
}

.scratch-inspiration {
  width: 620px;
  right: -80px;
  bottom: 10px;
  opacity: .8;
  transform: rotate(-8deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 705px;
  padding: 72px 7vw 40px;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: 48px;
  overflow: hidden;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding-top: 52px;
}

h1 {
  margin: 0 0 30px;
  font-size: clamp(54px, 7.4vw, 112px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -4px;
  font-weight: 1000;
}

h1 span,
strong,
.inspiration-text span {
  color: var(--green);
}

.lead {
  margin: 0 0 30px;
  font-size: clamp(22px, 2vw, 33px);
  line-height: 1.24;
  font-weight: 600;
}

.audience {
  margin: 0 0 38px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
  position: relative;
  padding-left: 48px;
}

.audience::before {
  content: "✳";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--green);
  font-size: 30px;
}

/* HERO PNG COMPOSITION */
.hero-products {
  position: relative;
  z-index: 1;
  min-height: 565px;
}

.hero-img {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 28px 35px rgba(0,0,0,.18));
}

.hero-tricko {
  width: 430px;
  top: 10px;
  left: 145px;
}

.hero-prkenko {
  width: 220px;
  left: 250px;
  bottom: 55px;
  transform: rotate(-4deg);
}

.hero-lahev {
  width: 100px;
  right: 235px;
  bottom: 142px;
}

.hero-hrnek {
  width: 190px;
  left: 85px;
  bottom: 60px;
}

.hero-vizitka {
  width: 215px;
  right: 140px;
  bottom: 36px;
}

/* BENEFITS */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 42px 7vw;
  gap: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.benefit {
  display: block;
}

.icon {
  color: var(--green);
  font-size: 58px;
  line-height: 1;
  margin-bottom: 18px;
}

.benefit h3 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.15;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 16px;
  max-width: 260px;
}

/* SECTIONS */
.section {
  padding: 70px 6vw;
}

.section h2 {
  margin: 0;
  text-align: center;
  font-size: 38px;
  text-transform: uppercase;
}

.title-line {
  width: 70px;
  height: 4px;
  background: var(--green);
  margin: 18px auto 40px;
}

.title-line.left {
  margin-left: 0;
}

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

.service-card {
  min-height: 190px;
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  padding: 28px 24px 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  align-items: end;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.05;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  background: var(--green);
  margin-top: 12px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.service-card img {
  width: 120px;
  align-self: end;
  justify-self: end;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.12));
}

/* INSPIRATION */
.inspiration {
  position: relative;
  overflow: hidden;
  padding: 70px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: linear-gradient(90deg, #f3f0e9, #fff);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.inspiration-visual {
  position: relative;
  min-height: 320px;
  z-index: 2;
}

.insp-img {
  position: absolute;
  filter: drop-shadow(0 20px 28px rgba(0,0,0,.16));
}

.insp-1 {
  width: 300px;
  left: 40px;
  top: 20px;
  transform: rotate(-4deg);
}

.insp-2 {
  width: 155px;
  left: 330px;
  top: 35px;
}

.insp-3 {
  width: 100px;
  left: 415px;
  bottom: 25px;
}

.insp-4 {
  width: 440px;
  left: 45px;
  bottom: 35px;
}

.inspiration-text {
  position: relative;
  z-index: 2;
}

.inspiration-text h2 {
  margin: 0 0 26px;
  font-size: 54px;
  line-height: .95;
  text-transform: uppercase;
}

.inspiration-text p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: #333;
  margin-bottom: 30px;
}

/* SOCIAL */
.social-section {
  background: #fff;
}

.social-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.social-heading h2 {
  text-align: left;
}

.social-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.social-buttons {
  display: flex;
  gap: 12px;
}

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

.social-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f2f2f2;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* FORM + CONTACT */
.bottom {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  padding: 56px 7vw;
  border-top: 1px solid var(--line);
}

.form-box h2,
.contact-box h2 {
  margin: 0 0 28px;
  font-size: 32px;
  text-transform: uppercase;
}

.form-box h2::after,
.contact-box h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 10px;
  background: var(--green);
}

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

label {
  display: block;
  font-weight: 700;
  color: #555;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.file {
  margin: 16px 0;
}

.contact-box p {
  font-size: 18px;
  line-height: 1.45;
}

.contact-box a {
  text-decoration: none;
}

.contact-box iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 10px;
  margin-top: 14px;
}

/* FOOTER */
footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px 7vw;
  background: #050505;
  color: #fff;
}

footer img {
  width: 140px;
}

footer p {
  color: #ddd;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #555;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 150px 1fr;
  }

  .top-buttons {
    display: none;
  }

  .hero,
  .inspiration,
  .bottom {
    grid-template-columns: 1fr;
  }

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

  .hero-products {
    min-height: 520px;
  }
}

@media (max-width: 700px) {
  .topbar {
    padding: 12px 20px;
    grid-template-columns: 95px 1fr;
    min-height: 78px;
  }

  .logo img {
    width: 90px;
  }

  .menu {
    justify-content: flex-end;
    gap: 16px;
    font-size: 14px;
  }

  .hero {
    padding: 42px 24px;
  }

  h1 {
    font-size: 56px;
    letter-spacing: -2px;
  }

  .lead {
    font-size: 22px;
  }

  .audience {
    font-size: 18px;
  }

  .hero-products {
    transform: scale(.72);
    transform-origin: top left;
    width: 138%;
    min-height: 420px;
  }

  .benefits,
  .service-grid,
  .form-row,
  .social-heading,
  .social-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .benefits,
  .section,
  .inspiration,
  .bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-card {
    grid-template-columns: 1fr 105px;
  }

  .service-card img {
    width: 105px;
  }

  .inspiration-text h2 {
    font-size: 42px;
  }

  .social-buttons {
    flex-wrap: wrap;
  }

  .scratch-hero,
  .scratch-inspiration {
    right: -260px;
    opacity: .5;
  }
}
.website-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}