* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1d21;
  --muted: #56606b;
  --accent: #2f6d6b;
  --accent-dark: #255b59;
  --sand: #f4f2ee;
  --mist: #eef2f2;
  --paper: #ffffff;
  --shadow: 0 20px 40px rgba(20, 22, 25, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  padding: 20px 0 10px;
  border-bottom: 1px solid #e2e6e8;
}

.topbar .page-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 320px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost:hover {
  background: var(--mist);
}

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 48px 0 80px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 340px;
}

.split .media {
  flex: 1 1 360px;
  min-height: 320px;
  background: var(--sand);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media.tall {
  min-height: 260px;
}

.tag {
  display: inline-block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

.inline-link:hover {
  color: var(--accent-dark);
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 20px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.spaced-top {
  margin-top: 20px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf0f1;
  font-weight: 500;
}

.pricing-item span {
  color: var(--ink);
}

.section-panel {
  background: var(--mist);
  border-radius: 28px;
  padding: 36px;
}

.layered-section {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #e4eceb;
  padding: 32px;
  box-shadow: var(--shadow);
}

.layered-section .bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: #dce6e4;
}

.layered-section .content {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 280px;
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .media {
  min-height: 180px;
  border-radius: 0;
  box-shadow: none;
}

.service-card .content {
  padding: 20px;
}

.form-wrap {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d6dde0;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 92px;
  background: var(--paper);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: var(--paper);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

footer {
  background: var(--sand);
  padding: 40px 0 60px;
  margin-top: 60px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-disclaimer {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .sticky-cta {
    right: 16px;
    bottom: 120px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
