@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter");
}

:root {
  --bg: #f5f4f1;
  --bg-alt: #eef1f4;
  --text: #1f2a2e;
  --muted: #5a6770;
  --accent: #2f6f5c;
  --accent-dark: #1e4f41;
  --light: #ffffff;
  --border: #d6dde2;
  --warm: #e9e2d6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  max-width: 220px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  padding: 70px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.split-title {
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--light);
}

.link-inline {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.link-inline:hover {
  border-color: var(--accent);
}

.img-frame {
  background-color: var(--warm);
  border-radius: 18px;
  overflow: hidden;
  padding: 8px;
}

.img-frame img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.card img {
  width: 120px;
  height: 90px;
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.section-accent {
  background: var(--bg-alt);
}

.section-light {
  background: var(--light);
}

.section-warm {
  background: #f3ede5;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.form-card {
  background: var(--light);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
}

.footer {
  background: var(--light);
  padding: 36px 0 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-small {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 360px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--light);
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 50;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 60;
  display: none;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  background: var(--warm);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 18px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.service-row img {
  width: 180px;
  height: 120px;
  border-radius: 12px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 780px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
