* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1f;
  --muted: #5c5f66;
  --accent: #1f6feb;
  --accent-soft: #e7f0ff;
  --surface: #ffffff;
  --surface-alt: #f4f2ee;
  --surface-deep: #efe9e2;
  --line: #d9d9de;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #faf9f7;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 40px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4vw;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.nav__left,
.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero__text {
  flex: 1 1 320px;
  background: var(--surface);
  padding: 32px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero__media {
  flex: 1 1 320px;
  background: #dfe7f4;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.hero__media img {
  width: 100%;
  height: 100%;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content {
  flex: 1 1 320px;
}

.split__media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
  background: #e0e6e0;
}

.split__media img {
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card__media {
  background: #e8e0d8;
  min-height: 160px;
}

.card__media img {
  width: 100%;
  height: 160px;
}

.card__body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: #0f172a;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--accent-soft);
  color: #1c3f7a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button:hover {
  opacity: 0.9;
}

.button--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 40px 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--deep {
  background: var(--surface-deep);
}

.form-box {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-weight: 600;
}

.form-box input,
.form-box select,
.form-box textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 40px 4vw;
}

.footer a {
  color: #93c5fd;
}

.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__col {
  flex: 1 1 220px;
}

.legal {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: var(--shadow);
  z-index: 20;
}

.sticky-cta button {
  padding: 8px 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  max-width: 360px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip__item {
  flex: 1 1 240px;
  border-radius: 14px;
  overflow: hidden;
  background: #dfe6ec;
  min-height: 180px;
}

.image-strip__item img {
  width: 100%;
  height: 180px;
}

.inline-cta {
  font-weight: 600;
}

.section-title {
  margin-top: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: var(--surface);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.table__row span {
  flex: 1 1 180px;
}

.highlight {
  background: #fff3c4;
  padding: 12px 16px;
  border-radius: 14px;
  display: inline-block;
}

.spacer {
  height: 10px;
}

.meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
