* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1f24;
  --muted: #5b6372;
  --line: #e0e4ea;
  --surface: #f7f4ef;
  --accent: #2f6b4f;
  --accent-dark: #224d39;
  --highlight: #f0efe9;
  --warm: #f6efe6;
  --cool: #eef4f7;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6%;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:focus,
.nav-links a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.section {
  padding: 40px 6%;
}

.section.alt {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.section.cool {
  background: var(--cool);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-text h1,
.split-text h2 {
  margin-top: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.media-box {
  background: var(--highlight);
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.media-box.tall {
  min-height: 340px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-btn,
.ghost-btn {
  border: none;
  padding: 12px 22px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn {
  background: var(--accent);
  color: #ffffff;
}

.cta-btn:hover,
.cta-btn:focus {
  background: var(--accent-dark);
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.ghost-btn:hover,
.ghost-btn:focus {
  background: var(--accent);
  color: #ffffff;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  margin: 16px 0;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

footer {
  background: #11151b;
  color: #e6e9ee;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e6e9ee;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c8cdd8;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(17, 21, 27, 0.12);
  z-index: 40;
}

.sticky-cta button {
  border: none;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 20px rgba(17, 21, 27, 0.12);
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 18px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions button:hover,
.cookie-actions button:focus {
  background: var(--accent-dark);
  color: #ffffff;
}

.simple-list {
  margin: 0;
  padding-left: 18px;
}

.hero-title {
  font-size: 2.2rem;
}

.muted {
  color: var(--muted);
}

.legal-note {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--line);
}
