* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: #1b1d21;
  background: #f5f7f6;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0;
  background: #f5f7f6;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6efe9;
  font-size: 0.85rem;
  font-weight: 600;
}

.main {
  flex: 1;
}

.split-section {
  display: flex;
  gap: 48px;
  padding: 56px 0;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .content,
.split-section .media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #4f6f62;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f4b3f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #e7efe9;
  color: #1f4b3f;
}

.inline-link {
  color: #1f4b3f;
  font-weight: 600;
  text-decoration: underline;
}

.image-frame {
  width: 100%;
  background: #dfe6e2;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(31, 75, 63, 0.08);
}

.card .card-media {
  width: 120px;
  min-width: 120px;
}

.card .card-media .image-frame {
  min-height: 120px;
}

.price {
  font-weight: 700;
  color: #1f4b3f;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0f4f2;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 34px rgba(31, 75, 63, 0.08);
}

.form-panel label {
  font-weight: 600;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd8d3;
  font-size: 1rem;
}

.form-panel button {
  width: 100%;
}

.note {
  font-size: 0.92rem;
  color: #4a5a54;
}

.bg-section {
  background: #eef3f0;
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-size: cover;
  background-position: center;
}

.bg-ducts {
  background-image: url("https://images.unsplash.com/photo-1708705261211-b2a244a811dc?w=1400&q=80");
}

.bg-metal {
  background-image: url("https://images.unsplash.com/photo-1743593097719-ab56bf483a1a?w=1400&q=80");
}

.footer {
  background: #1b1d21;
  color: #f7f7f7;
  padding: 32px 0 40px;
}

.footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f7f7f7;
  text-decoration: underline;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d0d5d2;
  max-width: 720px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #163b31;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(22, 59, 49, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  max-width: 360px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 56px 0;
}

.legal-content .image-frame {
  min-height: 260px;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .card {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
