* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1f24;
  --muted: #5a5e6a;
  --paper: #f6f4f1;
  --accent: #2f5f6d;
  --accent-strong: #1d3c45;
  --surface: #ffffff;
  --soft: #edf1f4;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid #e1e3e8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 20;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--soft);
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
}

.hero-visual {
  min-height: 360px;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  background-color: #d7dde2;
}

.image-frame {
  background-color: #d7dde2;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 16px;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-strong);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  border: none;
}

.btn-light {
  background: #fff;
  color: var(--accent-strong);
  border: 1px solid var(--accent-strong);
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  flex: 1 1 260px;
  box-shadow: 0 20px 40px rgba(13, 24, 34, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card .price {
  font-weight: 700;
  color: var(--accent-strong);
}

.panel {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px;
  color: #fff;
  background-color: #4b5961;
}

.panel-image {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.panel p {
  color: #f2f5f7;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  background: var(--surface);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 18px;
}

.testimonial-avatar {
  width: 140px;
  height: 140px;
}

.form-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(13, 24, 34, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d5d8df;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid #e1e3e8;
  padding: 40px 6vw 60px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal {
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: var(--surface);
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 340px;
  box-shadow: 0 18px 34px rgba(13, 24, 34, 0.18);
  z-index: 30;
  border: 1px solid #e1e3e8;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px 12px;
  font-size: 0.85rem;
}

.cookie-accept {
  background: var(--accent-strong);
  color: #fff;
}

.cookie-reject {
  background: #e7ebef;
  color: var(--ink);
}

.page-hero {
  padding: 60px 6vw 30px;
}

.page-hero .image-frame {
  min-height: 240px;
}

.content-block {
  padding: 40px 6vw 70px;
}

.content-block p + p {
  margin-top: 14px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.price-item {
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.tag {
  background: var(--soft);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
}

.columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.columns > div {
  flex: 1 1 260px;
}
