:root {
  --green: #a6c91f;
  --green-light: #d5ed69;
  --purple: #5d0b72;
  --dark: #17151d;
  --white: #ffffff;
}

* { box-sizing: border-box; }

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

.container {
  max-width: 1536px;
  margin: 0 auto;
  padding-left: 80px;
  padding-right: 80px;
}

.topbar {
  height: 36px;
  background: linear-gradient(90deg, #9fc51a, #b5d72b);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.topbar-inner {
  height: 36px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 38px;
}

.header {
  background: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,.08);
  position: relative;
  z-index: 10;
}

.nav {
  height: 142px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.logo img {
  width: 310px;
  display: block;
}

.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.menu a {
  color: #17151d;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 17px 0;
  border-bottom: 3px solid transparent;
}

.menu a.active,
.menu a:hover {
  color: var(--green);
  border-bottom-color: var(--green);
}

.quote-button {
  background: var(--purple);
  color: #fff;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 9px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(93,11,114,.25);
}

.hero {
  min-height: 486px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 46%, #e8ecec 46%, #e8ecec 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -40px;
  right: -40px;
  bottom: -82px;
  height: 150px;
  background: linear-gradient(90deg, #9fc51a, #d5ed69);
  transform: rotate(-2.8deg);
  transform-origin: left top;
  z-index: 2;
}

.white-curve {
  position: absolute;
  left: -140px;
  top: -78px;
  width: 840px;
  height: 700px;
  background: rgba(255,255,255,.93);
  border-radius: 0 55% 55% 0;
  z-index: 3;
}

.hero-inner {
  position: relative;
  z-index: 4;
  min-height: 486px;
  display: flex;
  align-items: center;
}

.hero-text {
  width: 48%;
  padding-bottom: 58px;
}

.hero-text h1 {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.hero-text h1 span { color: var(--green); }

.hero-text p {
  margin: 0 0 26px;
  font-size: 22px;
  line-height: 1.35;
}

.checks {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.checks li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 18px;
}

.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 9px;
  padding: 16px 29px;
  font-weight: 800;
}

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

.btn-outline {
  color: #222;
  background: #fff;
  border: 1.5px solid var(--green);
}

.hero-photo {
  position: absolute;
  right: -56px;
  top: 0;
  width: 62%;
  height: 100%;
  z-index: -1;
}

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

.products {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  padding-top: 42px;
  padding-bottom: 34px;
}

.products article {
  text-align: center;
  padding: 10px 34px;
  border-right: 1px solid #ddd;
}

.products article:last-child { border-right: none; }

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

.products h3 {
  margin: 0 0 9px;
  color: var(--purple);
  font-size: 19px;
}

.products p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.45;
}

.green-footer {
  background: linear-gradient(90deg, #d2ec69, #b6d73c, #d9ef78);
  padding: 30px 0;
}

.green-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}

.round-icon {
  width: 86px;
  height: 86px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--purple);
  font-size: 38px;
  flex: none;
}

.footer-text h2 {
  margin: 0 0 6px;
  color: var(--purple);
  font-size: 26px;
}

.footer-text p {
  margin: 0;
  font-size: 17px;
}

.handwritten {
  margin-left: auto;
  color: var(--purple);
  font-family: "Comic Sans MS", "Brush Script MT", cursive;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-7deg);
}

@media (max-width: 1100px) {
  .container { padding-left: 35px; padding-right: 35px; }
  .nav { height: auto; flex-wrap: wrap; padding-top: 22px; padding-bottom: 22px; }
  .logo img { width: 250px; }
  .menu { order: 3; width: 100%; justify-content: center; gap: 20px; flex-wrap: wrap; }
  .quote-button { margin-left: auto; }
  .hero { background: #fff; }
  .hero-inner { display: block; padding-top: 45px; }
  .hero-text { width: 100%; padding-bottom: 25px; }
  .hero-photo { position: relative; right: auto; width: 100%; height: 330px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .products article { border-bottom: 1px solid #ddd; }
}

@media (max-width: 650px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .topbar-inner { justify-content: center; gap: 14px; font-size: 13px; }
  .hero-text h1 { font-size: 42px; }
  .hero-text p { font-size: 18px; }
  .products { grid-template-columns: 1fr; }
  .products article { border-right: none; }
  .green-inner { display: block; text-align: center; }
  .round-icon { margin: 0 auto 14px; }
  .handwritten { margin: 24px auto 0; font-size: 30px; }    
}
.phone {
    display: block;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #17151d;
  }
