@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter"), local("Inter-Regular");
}

:root {
  --bg: #f5f1ea;
  --ink: #1b1b1b;
  --muted: #545454;
  --accent: #2f5d7c;
  --accent-soft: #d8e6f2;
  --sand: #efe7db;
  --dark: #16222b;
  --light: #ffffff;
  --shadow: 0 24px 50px rgba(18, 24, 28, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #dfe8ef;
}

.container {
  width: min(1180px, 90vw);
  margin: 0 auto;
}

.top-nav {
  padding: 22px 0;
  background: var(--light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 6px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  min-width: 0;
}

.split-content h1,
.split-content h2,
.split-content h3 {
  margin-top: 0;
}

.tone-soft {
  background: var(--sand);
}

.tone-dark {
  background: var(--dark);
  color: var(--light);
}

.tone-dark a {
  color: #b2d6ef;
}

.media-card {
  background: #dfe8ef;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
}

.floating-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--light);
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn:hover,
.btn:focus {
  background: #21465f;
  color: var(--light);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--accent-soft);
  color: var(--accent);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  background: var(--light);
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
}

.inline-link {
  font-weight: 600;
}

.form-wrap {
  background: var(--light);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 1rem;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 34, 43, 0.68);
}

.section-bg .split-content,
.section-bg .split-media {
  position: relative;
  z-index: 1;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px;
}

.footer {
  padding: 40px 0;
  background: var(--light);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

.footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
}

.sticky-cta button {
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.legal-block {
  padding: 40px 0;
}

.legal-block h1 {
  margin-top: 0;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-card {
  background: #dfe8ef;
  border-radius: 16px;
  padding: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
