*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #0f1a18;
  --muted: #4b5b57;
  --accent: #1e7a5c;
  --accent-2: #0b4f3a;
  --light: #f4f6f4;
  --warm: #efe9e2;
  --mist: #d9e5df;
  --shadow: 0 18px 40px rgba(15, 26, 24, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 7vw 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 10px 7vw 60px;
}

.hero-text {
  flex: 1 1 360px;
  padding: 20px 24px 20px 0;
  max-width: 520px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-media {
  flex: 1 1 420px;
  position: relative;
  min-height: 360px;
}

.hero-media .frame {
  background: var(--mist);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.hero-media .floating-card {
  position: absolute;
  bottom: -24px;
  right: 12%;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 260px;
}

.section {
  padding: 70px 7vw;
}

.section.alt {
  background: var(--light);
}

.split {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 380px;
  position: relative;
}

.visual .image-frame {
  background: var(--warm);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}

.offset-block .card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.offset-block .card.highlight {
  transform: translateY(-20px);
  background: var(--mist);
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: underline;
}

.form-shell {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
  max-width: 680px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d7d3;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.sticky-cta a {
  display: inline-flex;
  margin-top: 8px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.story-item {
  flex: 1 1 200px;
  background: var(--warm);
  border-radius: 16px;
  padding: 16px;
}

.footer {
  margin-top: auto;
  padding: 40px 7vw;
  background: #0f1a18;
  color: #ffffff;
}

.footer a {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  max-width: 360px;
  z-index: 10;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.banner-bg {
  background: var(--mist);
}

.bg-energy {
  background-color: #dde7e1;
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-resilience {
  background-color: #e8ece8;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.image-tile {
  background: var(--mist);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-tile img {
  width: 100%;
  height: 220px;
}

.notice {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .hero-media .floating-card {
    position: static;
    margin-top: 16px;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
