* {
  box-sizing: border-box;
}

:root {
  --deep: #0d2b22;
  --forest: #1f4d3c;
  --leaf: #2f7a5c;
  --mist: #e7f2ea;
  --sand: #f4efe7;
  --sun: #f4c04d;
  --stone: #34423c;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--deep);
  background: var(--mist);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--deep);
  color: #fff;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.primary {
  background: var(--sun);
  color: var(--deep);
}

.button.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.content {
  flex: 1;
  padding: 36px 40px 80px;
}

.section {
  padding: 32px 0;
  border-bottom: 1px solid rgba(13, 43, 34, 0.12);
}

.section:last-of-type {
  border-bottom: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(145deg, #e9f5ee, #d9eee2);
  border-radius: 24px;
  padding: 32px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split > div {
  flex: 1 1 240px;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  box-shadow: 0 10px 30px rgba(13, 43, 34, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.metric {
  flex: 1 1 180px;
  background: var(--sand);
  border-radius: 16px;
  padding: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(13, 43, 34, 0.08);
}

.price-row strong {
  font-size: 18px;
}

.form-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 26px rgba(13, 43, 34, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(13, 43, 34, 0.2);
  font-size: 14px;
  font-family: inherit;
}

.inline-link {
  font-weight: 600;
  color: var(--leaf);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--stone);
  padding-top: 32px;
}

.footer a {
  color: var(--stone);
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(13, 43, 34, 0.14);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.highlight-band {
  background: var(--forest);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notice {
  background: #fff5d6;
  border-left: 4px solid var(--sun);
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sidebar-cta {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }

  .content {
    padding: 24px;
  }
}
