* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1d1a;
  background-color: #f6f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0 12px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  text-transform: capitalize;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b5b52;
  max-width: 260px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 0 64px;
}

.hero-panel {
  display: flex;
  gap: 32px;
  align-items: center;
  background-color: #e9efe9;
  padding: 32px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  background-color: rgba(17, 62, 42, 0.12);
  border-radius: 50%;
}

.hero-text {
  flex: 1;
  z-index: 1;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin: 0 0 12px;
  line-height: 1.1;
}

.hero-text p {
  max-width: 460px;
  margin: 0 0 18px;
}

.hero-image {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background-color: #cbd7cc;
}

.hero-image img {
  width: 100%;
  height: 320px;
}

.cta-button {
  display: inline-flex;
  padding: 12px 22px;
  background-color: #1f4c35;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.offset {
  padding-top: 20px;
}

.offset-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.offset-card.push {
  margin-top: -30px;
}

.offset-card.pull {
  margin-top: 30px;
}

.image-frame {
  flex: 1;
  background-color: #d6dfd6;
  border-radius: 22px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
}

.highlight {
  background-color: #1f4c35;
  color: #fff;
  padding: 40px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.bg-energy-flow {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.bg-energy-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 22, 0.55);
}

.bg-energy-flow .stacked {
  position: relative;
  z-index: 1;
}

.bg-service-slate {
  background-image: url("https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 28px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.bg-service-slate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 28, 22, 0.6);
}

.bg-service-slate .stacked {
  position: relative;
  z-index: 1;
}

.highlight::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.highlight h2 {
  margin-top: 0;
}

.pricing-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e0e7e0;
}

.price-card span {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd5cc;
  font-size: 1rem;
  background-color: #f8faf8;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-note {
  color: #4b5b52;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #153324;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid #e0e6e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #3d4a42;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.outline-button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1f4c35;
  color: #1f4c35;
  background-color: transparent;
  font-weight: 600;
}

.simple-header {
  padding: 36px 0 24px;
}

.simple-header h1 {
  margin-bottom: 8px;
}

.legal-block {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.legal-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.legal-row .image-frame img {
  height: 240px;
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  background-color: #e2ebe3;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-panel,
  .offset-row {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    align-self: flex-start;
    margin: 12px 0 0;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
