* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2621;
  background-color: #f4f1ec;
  line-height: 1.6;
}

a {
  color: #1f5b41;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #111a14;
  color: #f8f6f2;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 22px;
  font-weight: 700;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #c7d5cb;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: #f8f6f2;
  font-weight: 500;
}

.sidebar-cta {
  margin-top: auto;
  background-color: #f6a23d;
  color: #111a14;
  padding: 12px 16px;
  border-radius: 18px;
  text-align: center;
  font-weight: 600;
}

main {
  flex: 1;
  padding: 36px 6vw 120px 6vw;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0;
}

.hero-panel {
  flex: 1;
  background-color: #dde4df;
  border-radius: 28px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  background-color: #1f5b41;
  color: #f4f1ec;
  border: none;
  padding: 12px 18px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.btn.light {
  background-color: #f4f1ec;
  color: #1f2621;
  border: 1px solid #c9d2cb;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background-color: #f6a23d;
  color: #111a14;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  z-index: 20;
}

.section {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  flex: 1;
  border-radius: 24px;
  background-color: #d8e1da;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  width: 100%;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  background-color: #dfe6e0;
}

.pricing {
  font-weight: 700;
  color: #1f5b41;
}

.bg-band {
  background-color: #1f2621;
  color: #f4f1ec;
  padding: 28px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-size: cover;
  background-position: center;
}

.bg-hood {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.bg-duct {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?w=1400&q=80");
}

.bg-band .inline-link {
  color: #f6a23d;
  font-weight: 600;
}

.form-wrap {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9d2cb;
  font-family: inherit;
  font-size: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footer {
  padding: 20px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #445047;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.notice {
  padding: 18px;
  border-radius: 16px;
  background-color: #f6efe5;
}

.simple-hero {
  display: flex;
  gap: 22px;
  align-items: center;
}

.simple-hero img {
  width: 320px;
  height: 220px;
  border-radius: 18px;
  object-fit: cover;
  background-color: #dfe6e0;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }

  .hero,
  .section,
  .simple-hero {
    flex-direction: column;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }

  main {
    padding: 28px 6vw 120px 6vw;
  }
}
