*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #172018;
  background-color: #f5f7f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background-color: #f5f7f4;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid #b8c1b8;
  border-radius: 999px;
  font-size: 0.8rem;
  background-color: #eef2ee;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  min-height: 70vh;
  background-color: #e9efe8;
}

.hero-copy {
  flex: 1 1 360px;
  padding: 70px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  background-color: #f7f9f6;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #dfe6dd;
}

.hero-visual {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cad6cc;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 70vh;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background-color: #1e4731;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid transparent;
}

.button.secondary {
  background-color: transparent;
  color: #1e4731;
  border-color: #1e4731;
}

.button:hover {
  background-color: #163724;
}

.button.secondary:hover {
  background-color: #e4efe7;
}

.section {
  padding: 70px 7vw;
}

.bg-flow {
  background-image: url("https://images.unsplash.com/photo-1505678261036-a3fcc5e884ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f9fbf7;
}

.bg-flow .panel {
  background-color: rgba(30, 55, 36, 0.92);
}

.section.alt {
  background-color: #ffffff;
}

.section.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section.split .text-block {
  flex: 1 1 320px;
}

.section.split .image-frame {
  flex: 1 1 320px;
  background-color: #d7e2d8;
  padding: 16px;
  border-radius: 16px;
  transform: translateY(-20px);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.section.offset {
  position: relative;
}

.section.offset .panel {
  background-color: #203926;
  color: #ffffff;
  padding: 48px;
  width: min(560px, 90%);
  margin-left: auto;
  border-radius: 24px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.metric-card {
  flex: 1 1 160px;
  padding: 20px;
  border-radius: 16px;
  background-color: #e7eee7;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(23, 32, 24, 0.08);
}

.card .card-image {
  background-color: #dfe8e0;
}

.card .card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1e4731;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step span {
  font-weight: 700;
  color: #1e4731;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 340px;
  background-color: #f7faf6;
  border-radius: 20px;
  padding: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8d2c9;
  font-size: 0.95rem;
  background-color: #ffffff;
}

.form-note {
  font-size: 0.85rem;
  color: #516154;
}

.testimonial {
  background-color: #ffffff;
  border-left: 5px solid #1e4731;
  padding: 24px;
  border-radius: 12px;
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 20;
  box-shadow: 0 16px 32px rgba(23, 32, 24, 0.2);
}

.footer {
  padding: 50px 7vw;
  background-color: #1b2b1f;
  color: #e8efe8;
}

.footer a {
  color: #e8efe8;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(23, 32, 24, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .button {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-hero {
  padding: 70px 7vw 40px;
  background-color: #e9efe8;
}

.simple-content {
  padding: 40px 7vw 70px;
}

.simple-content p {
  margin-top: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-card {
  flex: 1 1 240px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 16px;
}

.highlight-box {
  padding: 26px;
  background-color: #f2f7f2;
  border-radius: 18px;
  margin-top: 20px;
}

.bg-solar {
  background-image: url("https://images.unsplash.com/photo-1497436072909-60f360e1d4b1?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-solar .highlight-box {
  background-color: rgba(20, 35, 23, 0.82);
  color: #ffffff;
}
