:root {
  color-scheme: light;
  --ink: #132029;
  --muted: #5b6b74;
  --paper: #f6f7f9;
  --accent: #1d6fa3;
  --accent-soft: #e0edf6;
  --deep: #0f2a3a;
  --warm: #f0ebe6;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  background: var(--card);
  border-bottom: 1px solid #e5e7eb;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

main {
  padding: 28px 0 80px;
}

.section {
  padding: 46px 6%;
}

.section.tight {
  padding-top: 28px;
  padding-bottom: 28px;
}

.section.dark {
  background: var(--deep);
  color: #f1f5f8;
}

.section.bg-image-flow {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.section.bg-image-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 58, 0.75);
}

.section.bg-image-flow > * {
  position: relative;
  z-index: 1;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-column {
  flex: 1 1 320px;
  min-width: 280px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin: 12px 0 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover {
  filter: brightness(0.95);
}

.image-frame {
  background-color: #d9e4eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(16, 24, 40, 0.12);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 220px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #d9e4eb;
  margin-bottom: 12px;
}

.tag {
  display: inline-flex;
  background: var(--warm);
  color: #5a4636;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.service-price {
  font-weight: 700;
  margin-top: 8px;
}

.inline-cta {
  font-weight: 600;
}

.form-wrap {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.spaced-top {
  margin-top: 20px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5dbe0;
  font-size: 0.95rem;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.footer {
  background: #0c1820;
  color: #d8e0e7;
  padding: 30px 6% 70px;
}

.footer a {
  color: #d8e0e7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: var(--ink);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  display: none;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hero-note {
  background: var(--accent-soft);
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 16px;
  font-size: 0.95rem;
}

.list-plain {
  padding-left: 18px;
  margin: 12px 0;
}

@media (max-width: 880px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
