* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #10221b;
  --slate: #2f3f39;
  --leaf: #1b6f5b;
  --mist: #e6f4ef;
  --sand: #f3f1eb;
  --sun: #e6b567;
  --stone: #d9d4c8;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: #f8f7f4;
  color: var(--ink);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: var(--leaf);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.4px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--slate);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 18px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section {
  padding: 56px 24px;
}

.section.tight {
  padding: 40px 24px;
}

.split {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--slate);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-bottom: 14px;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 16px;
  color: var(--slate);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: 1px solid var(--leaf);
  background: transparent;
  color: var(--leaf);
  padding: 12px 18px;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary {
  background: var(--leaf);
  color: var(--white);
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid var(--leaf);
}

.media-frame {
  background-color: var(--stone);
  border-radius: 20px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(16, 34, 27, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media-frame {
  height: 150px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.tag {
  background: var(--mist);
  color: var(--slate);
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 0.85rem;
  display: inline-block;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 16px;
  min-width: 180px;
  box-shadow: 0 10px 20px rgba(16, 34, 27, 0.12);
}

.section-bg {
  color: var(--white);
}

.section-bg p {
  color: rgba(255, 255, 255, 0.88);
}

.bg-solar-cloudy {
  background-image: url("https://images.unsplash.com/photo-1771178300970-230f7de19e9c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-overlay {
  background: rgba(12, 32, 26, 0.7);
  padding: 40px;
  border-radius: 20px;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list li {
  padding-left: 16px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sun);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  color: var(--slate);
}

input,
select,
textarea {
  border: 1px solid var(--stone);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--slate);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 28px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(16, 34, 27, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(16, 34, 27, 0.18);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 24px;
}

footer a {
  color: var(--sun);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 220px;
}

.legal-list {
  list-style: none;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
