* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a2e;
  --muted: #5b6a70;
  --accent: #1c6d6f;
  --accent-dark: #145456;
  --soft: #f2f6f5;
  --warm: #efe8dd;
  --deep: #0f2a33;
  --border: #dfe6e3;
  --card: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfbfa;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: #7a3f2a;
  background: #fdeee7;
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.section {
  padding: 70px 40px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.6px;
  color: var(--muted);
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.hero {
  background: #e7efee;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 70px 40px;
  min-height: 420px;
}

.hero .hero-content {
  flex: 1;
  max-width: 560px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
}

.hero-media {
  flex: 1;
  background: #d8e4e0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.btn.secondary:hover {
  background: var(--accent);
  color: #ffffff;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 230px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 160px;
  background: #d9e4e2;
}

.card-body {
  padding: 18px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
}

.highlight {
  background: var(--soft);
}

.warm {
  background: var(--warm);
}

.deep {
  background: var(--deep);
  color: #ffffff;
}

.deep p,
.deep a {
  color: #dce7ea;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.media-box {
  background: #d8e4e0;
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
}

.floating-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  margin-top: 18px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 4;
}

.form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-size: 15px;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 50px 40px;
  background: #0f1f26;
  color: #c6d2d6;
}

.footer a {
  color: #c6d2d6;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: #b2c2c8;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.notice {
  padding: 14px 16px;
  background: #fff5e9;
  border: 1px solid #f0d2bd;
  border-radius: 8px;
  color: #6a3b22;
}

.hero-alt {
  background: #dfe9ec;
  display: flex;
  align-items: center;
  min-height: 320px;
}

.hero-alt .split {
  align-items: center;
}

.hero-image {
  height: 320px;
  background: #d8e4e0;
  border-radius: 12px;
  overflow: hidden;
}

.bg-insight {
  background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
}

.bg-insight .text {
  background: rgba(15, 31, 38, 0.72);
  padding: 30px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse,
  .hero {
    flex-direction: column;
  }

  header {
    padding: 20px;
  }

  .section {
    padding: 60px 20px;
  }

  .sticky-cta {
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
