* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c2430;
  --muted: #5a6777;
  --paper: #f5f4f0;
  --accent: #2d6f62;
  --accent-dark: #1f4f45;
  --warm: #f7efe6;
  --slate: #e4e9ef;
  --line: #d6dce4;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  font-size: 15px;
  color: var(--muted);
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:focus,
.nav a:hover {
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
}

.ad-label {
  font-size: 12px;
  color: var(--accent-dark);
  max-width: 220px;
  line-height: 1.4;
  text-align: right;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  padding: 32px;
  background: var(--paper);
  border-radius: 24px;
}

.hero-image {
  background-color: #cfd6de;
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent);
}

h1 {
  font-size: 42px;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: 1px solid var(--accent);
}

.button.alt {
  background: transparent;
  color: var(--accent);
}

.button:focus,
.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.inline-link:focus,
.inline-link:hover {
  color: var(--accent-dark);
  border-bottom-color: var(--accent-dark);
}

.section {
  margin-top: 56px;
  padding: 28px;
  border-radius: 20px;
  background: var(--slate);
}

.section.light {
  background: #ffffff;
  border: 1px solid var(--line);
}

.section.warm {
  background: var(--warm);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: #d9dde2;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.bg-panel {
  min-height: 240px;
  border-radius: 18px;
  background-color: #d3d8df;
  background-size: cover;
  background-position: center;
}

.bg-standards {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-workflow {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #dfe3e8;
}

.card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-wrap {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 20;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero-image img {
    height: 260px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
