* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1c2a21;
  background-color: #f7f7f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #0f2c1f;
  color: #f0f4ed;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(240, 244, 237, 0.2);
}

.ad-label {
  font-size: 0.8rem;
  color: #c4e3cc;
  margin-top: 8px;
}

.sidebar-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #c4e3cc;
  color: #c4e3cc;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 56px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #183023;
  border-radius: 28px;
  padding: 48px;
  color: #f6fdf7;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 24, 18, 0.8), rgba(10, 24, 18, 0.2));
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.05rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background-color: #d7f171;
  color: #12271c;
}

.btn-secondary {
  background-color: #f7f7f2;
  color: #0f2c1f;
  border: 1px solid #0f2c1f;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section h2 {
  margin: 0;
  font-size: 1.7rem;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #dfe9e2;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.image-frame img {
  height: 100%;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric-card {
  flex: 1 1 200px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 14px 24px rgba(10, 24, 18, 0.08);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: #0f2c1f;
}

.case-highlight {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1b3326;
  border-radius: 24px;
  padding: 36px;
  color: #f4fbf6;
  position: relative;
  overflow: hidden;
}

.case-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 20, 0.75);
}

.case-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 30px rgba(10, 24, 18, 0.1);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c6d3c8;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.footer {
  border-top: 1px solid #d4ddd7;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #0f2c1f;
  color: #f0f4ed;
  padding: 16px 18px;
  border-radius: 18px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner.is-hidden {
  display: none;
}

.legal-content {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .nav {
    flex: 1 1 200px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .content {
    padding: 32px 24px 120px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
