:root {
  --bg: #f6f4f1;
  --text: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #2b5dff;
  --accent-dark: #1f3dbf;
  --warm: #ffe8cc;
  --cool: #e7f0ff;
  --ink: #0f172a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b4f1f;
  background: var(--warm);
  padding: 6px 10px;
  border-radius: 999px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  background: var(--cool);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 60px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1;
}

.split .image-block {
  flex: 1;
  background: #dde6ff;
  padding: 10px;
  border-radius: 16px;
}

.image-block img,
.card img,
.inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.inline-image {
  background: #f2f2f2;
  padding: 8px;
  border-radius: 14px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #ffffff;
}

.section.warm {
  background: var(--warm);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.2;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-weight: 700;
  color: var(--ink);
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.text-link:hover {
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  color: #2d2d2d;
}

.panel {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.panel .panel-box {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, select, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d5d5d5;
  font-size: 1rem;
  font-family: inherit;
}

footer {
  background: #0f172a;
  color: #f4f4f4;
  padding: 40px 0;
}

footer a {
  color: #f4f4f4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-block {
  flex: 1 1 240px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.banner-bg {
  background: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80") center/cover no-repeat;
  color: #fff;
}

.banner-bg .overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 70px 0;
}

.muted {
  color: var(--muted);
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e2e2;
}

.service-row span {
  font-weight: 600;
}

.hero-image {
  background: #e8eefc;
  border-radius: 18px;
  padding: 12px;
}

.hero-image img {
  border-radius: 14px;
}

.bg-soft {
  background: #fff6ef;
}

.bg-cool {
  background: #eef6ff;
}

.highlight {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
}

.inline-cta {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  nav ul {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
