:root {
  color-scheme: light;
  --bg: #f4f5f6;
  --text: #1c2226;
  --muted: #566068;
  --accent: #345b6f;
  --accent-soft: #e5eef2;
  --border: #d8dde2;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.layout {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 22px;
  width: 260px;
  background: #ffffff;
  border-right: 1px solid var(--border);
}
.brand-name {
  font-weight: 700;
  font-size: 20px;
}
.brand-sub {
  color: var(--muted);
  font-size: 14px;
}
.ad-label {
  font-size: 12px;
  color: #4c2f2f;
  background: #f9ecec;
  padding: 10px 12px;
  border-radius: 10px;
}
.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 36px 40px 80px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--muted);
}
.button {
  border: 1px solid var(--accent);
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
}
.button.primary {
  background: var(--accent);
  color: white;
}
.button.ghost {
  background: transparent;
  color: var(--accent);
}
.inline-link {
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
}
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.hero-copy {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-media {
  flex: 1;
  min-width: 280px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.asym {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.asym-text {
  flex: 1.1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.asym-media {
  flex: 0.9;
  min-width: 240px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 300px;
}
.process {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.step {
  flex: 1;
  min-width: 220px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
}
.materials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.material-card {
  flex: 1;
  min-width: 240px;
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.material-card img {
  border-radius: 14px;
  min-height: 180px;
}
.pricing {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.price-item {
  flex: 1;
  min-width: 250px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.trust-copy {
  flex: 1.1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-image {
  flex: 0.9;
  min-width: 240px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}
.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.form-card {
  flex: 1.1;
  min-width: 280px;
  background: white;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
}
.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
input, select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
}
.form-side {
  flex: 0.9;
  min-width: 240px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.form-side img {
  min-height: 240px;
}
.side-note {
  padding: 12px 14px;
  background: #ffffff;
  border-top: 1px solid var(--border);
}
.footer {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-grid > div {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-title {
  font-weight: 700;
}
.disclaimer {
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom {
  font-size: 12px;
  color: var(--muted);
}
.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.page-hero-media {
  flex: 1;
  min-width: 260px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.panel {
  flex: 1;
  min-width: 220px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
}
.panel ul {
  padding-left: 18px;
  margin: 0;
}
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
  background: var(--accent-soft);
}
.service-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.note {
  flex: 1;
  min-width: 240px;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  background: white;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: white;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
}
.contact-grid > div {
  flex: 1;
  min-width: 200px;
}
.contact-note {
  padding: 18px;
  background: var(--accent-soft);
  border-radius: 18px;
}
.legal {
  background: white;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  max-width: 920px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
}
.thanks-text {
  font-size: 18px;
  max-width: 520px;
}
.bg-hero {
  background: #d3d7db;
}
.bg-asym {
  background: #cfd4d1;
}
.bg-card-1 {
  background: #e5e2dd;
}
.bg-card-2 {
  background: #e0e4e8;
}
.bg-card-3 {
  background: #dde1e7;
}
.bg-trust {
  background: #d8dde2;
}
.bg-form {
  background: #dadfe3;
}
.bg-about {
  background: #d8dde0;
}
@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}
