* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2428;
  --muted: #5f6b73;
  --accent: #0f6a5f;
  --accent-soft: #e2f2ef;
  --surface: #f7f4ef;
  --sand: #efe9e0;
  --stone: #d7d1c8;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  padding: 18px 0;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--accent-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 32px;
  padding: 64px 0;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 0;
}

.panel-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel-title {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 1.2;
}

.panel-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.panel-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.image-frame {
  background: var(--stone);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 30px rgba(31, 36, 40, 0.08);
}

.service-card .thumb {
  width: 110px;
  height: 110px;
  background: var(--sand);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--accent-soft);
  font-size: 0.85rem;
  color: var(--accent);
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature {
  background: var(--white);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--stone);
}

.inline-image {
  width: 160px;
  height: 120px;
  background: var(--stone);
  border-radius: 14px;
  overflow: hidden;
}

.form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(31, 36, 40, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--stone);
  font-family: inherit;
  font-size: 1rem;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
}

.split-banner {
  background: var(--sand);
}

.bg-toolwall {
  background: linear-gradient(120deg, rgba(15, 106, 95, 0.12), rgba(15, 106, 95, 0.02)),
    url("https://images.unsplash.com/photo-1678094612913-10a77acfeb19?w=1400&q=80") center/cover no-repeat;
}

.bg-toolwall .panel {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 20px;
}

.footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: var(--white);
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8d8d8;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 12px 28px rgba(31, 36, 40, 0.2);
  z-index: 100;
}

.sticky-cta a {
  color: var(--accent);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(31, 36, 40, 0.15);
  display: none;
  z-index: 120;
}

.cookie-banner.is-visible {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-section {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--stone);
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}
