* {
  box-sizing: border-box;
}

:root {
  --ink: #1b2b22;
  --muted: #4c5f55;
  --accent: #2f6f5a;
  --accent-2: #0f3b2e;
  --paper: #f5f3ee;
  --mist: #e6ece7;
  --moss: #cdd9c5;
  --sand: #efe6d6;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #f0f4f0;
  border-right: 1px solid #d7e0d8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 18px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 6px 0;
}

.nav a:focus,
.nav a:hover {
  color: var(--accent);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button.secondary {
  background: var(--accent-2);
}

.content {
  flex: 1;
  padding: 0 40px 80px;
}

.section {
  padding: 60px 0;
}

.section.narrow {
  max-width: 860px;
}

.section.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2e8e2;
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  background-color: var(--moss);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 70px 0 40px;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1;
  min-height: 360px;
  border-radius: 24px;
  background-color: var(--moss);
  background-size: cover;
  background-position: center;
}

.hero-visual.home {
  background-image: url("https://images.unsplash.com/photo-1590273466070-40c466b4432d?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwzOHx8TmFjaGhhbHRpZ2UlMjBOYXR1ci0lMjB1bmQlMjBVbXdlbHRrb256ZXB0ZSUyMGYlQzMlQkNyJTIwUHJvamVrdGUlMkMlMjBkaWUlMjBtZXNzYmFyJTIwd2lya2VuLnxkZXwwfDB8fHwxNzgyOTk3NjM4fDA&ixlib=rb-4.1.0&q=80&w=1080");
}

.badge {
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  color: var(--muted);
}

.inline-link {
  color: var(--accent-2);
  text-decoration: underline;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--sand);
  width: 100%;
}

.frame-medium {
  height: 320px;
}

.frame-short {
  height: 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  min-width: 180px;
  border: 1px solid #e2e8e2;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e5df;
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e2e8e2;
  max-width: 620px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd6cc;
  margin-bottom: 16px;
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid #d7e0d8;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--accent-2);
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 28px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border: 1px solid #d7e0d8;
  border-radius: 16px;
  padding: 16px 20px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(20, 40, 30, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e0e5df;
  color: var(--ink);
}

.banner-surface {
  background-color: var(--mist);
  padding: 48px 40px;
  border-radius: 24px;
}

.section-background {
  background-image: url("https://images.unsplash.com/photo-1556426356-0fdc8b663467?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1NXx8TmFjaGhhbHRpZ2UlMjBOYXR1ci0lMjB1bmQlMjBVbXdlbHRrb256ZXB0ZSUyMGYlQzMlQkNyJTIwUHJvamVrdGUlMkMlMjBkaWUlMjBtZXNzYmFyJTIwd2lya2VuLnxkZXwwfDB8fHwxNzgyOTk3NjM4fDA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-color: var(--moss);
  border-radius: 28px;
  padding: 60px 48px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    width: 100%;
    flex-direction: row;
  }

  .hero {
    flex-direction: column;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 18px;
    left: 18px;
    text-align: center;
  }
}
