* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: #f6f3ee;
  border-bottom: 1px solid #ded7ce;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-brand {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b5d4b;
  max-width: 320px;
}

.section {
  padding: 72px 6%;
}

.section.alt {
  background: #efe8df;
}

.section.dark {
  background: #1f2a33;
  color: #f9f6f1;
}

.split {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.split-media {
  background: #d8d1c8;
  border-radius: 18px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b5d4b;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  background: #1d1d1f;
  color: #f9f6f1;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: inherit;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-image {
  background: #cbbfb1;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #6b5d4b;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.metric {
  flex: 1 1 200px;
  padding: 18px;
  background: #f9f6f1;
  border-radius: 14px;
  border: 1px solid #ded7ce;
}

.model-block {
  background: #fff;
  border-left: 4px solid #6b5d4b;
  padding: 18px 22px;
}

.form-box {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c5b9ab;
  font-size: 1rem;
  background: #fffdf9;
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1d1d1f;
  color: #f9f6f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #d8d1c8;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #6b5d4b;
  color: #f9f6f1;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #1d1d1f;
  padding: 8px 14px;
  background: #1d1d1f;
  color: #fff;
}

.cookie-actions button.secondary {
  background: transparent;
  color: inherit;
}

.background-panel {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 32px;
  color: #f9f6f1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.background-panel.light {
  color: #1d1d1f;
}

.bg-confidence {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-color: #6b5d4b;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.contact-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #ded7ce;
}

.page-hero {
  padding: 64px 6% 48px;
  background: #efe8df;
}

.simple-section {
  padding: 48px 6%;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.table-item {
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ded7ce;
}

.no-email-link {
  font-weight: 600;
  color: #6b5d4b;
}
