* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1f24;
  --muted: #5b6673;
  --line: #d9dde3;
  --sand: #f5f1eb;
  --stone: #eef1f4;
  --midnight: #232a33;
  --accent: #2b5f6d;
  --accent-soft: #dce9ee;
  --cta: #c96b3a;
  --cta-soft: #f7e3d8;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 90%);
  margin: 0 auto;
}

.site-header {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand a {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--stone);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.hero {
  padding: 72px 0;
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
}

.hero-image {
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #cdd6dc;
  border: 1px solid var(--line);
}

.hero-image img {
  object-fit: cover;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 2.8vw, 3.3rem);
}

h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--cta);
  color: #ffffff;
  font-weight: 600;
  gap: 10px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--ink);
}

.btn.ghost {
  background: var(--cta-soft);
  color: var(--ink);
  border-color: var(--cta-soft);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-image {
  height: 160px;
  background-color: #dfe6eb;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.panel {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 16px;
}

.panel.dark {
  background: var(--midnight);
  color: #ffffff;
}

.panel.dark p {
  color: #c9d2dd;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.tag {
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 18px;
  background: #ffffff;
  border-left: 4px solid var(--cta);
}

.form-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--midnight);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 20;
}

.sticky-cta a {
  background: #ffffff;
  color: var(--midnight);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.image-panel {
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d5dce2;
}

.section-bg {
  background-color: #d0d6dc;
  border-radius: 24px;
  overflow: hidden;
  min-height: 260px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 80px;
  background: #ffffff;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer small {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  border-radius: 10px;
  padding: 8px;
  font-weight: 600;
}

.cookie-actions button.reject {
  background: #ffffff;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.85rem;
}

.section-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 10px;
    left: 10px;
    bottom: 10px;
    justify-content: space-between;
  }
}
