* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c2227;
  --muted: #52606d;
  --accent: #1f7a6b;
  --accent-dark: #155a50;
  --sand: #f4f2ee;
  --mist: #eef3f1;
  --leaf: #dce8e2;
  --sun: #f2ead1;
  --shadow: 0 16px 40px rgba(20, 28, 34, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 6%;
  gap: 24px;
  background: #ffffff;
}

.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav__brand span {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav__label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav__links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  min-height: 62vh;
}

.hero__content,
.hero__visual {
  flex: 1 1 320px;
  padding: 72px 6%;
}

.hero__content {
  background: var(--mist);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero__visual {
  background: var(--leaf);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button--ghost:hover {
  background: rgba(31, 122, 107, 0.08);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 6%;
}

.section--split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.section--split.reverse {
  flex-direction: row-reverse;
}

.section__text,
.section__media {
  flex: 1 1 320px;
}

.section__media {
  background: var(--sand);
  border-radius: 18px;
  padding: 18px;
}

.section__media img {
  border-radius: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid #dde6df;
}

.inline-visual {
  margin-top: 18px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--leaf);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card__media {
  border-radius: 12px;
  overflow: hidden;
  background: var(--sand);
}

.card__price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  background: var(--sun);
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form select,
.form input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d5dcd7;
  font-size: 1rem;
}

.form .form-error {
  color: #9d2c2c;
  font-size: 0.9rem;
}

.form__summary {
  font-size: 0.95rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 46px 6% 60px;
  background: #f6f7f5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 5;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 18px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.layout-pane {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--mist);
  padding: 18px;
  border-radius: 14px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.two-col > div {
  flex: 1 1 260px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.legal {
  max-width: 820px;
}

@media (max-width: 720px) {
  .hero__content,
  .hero__visual {
    padding: 48px 6%;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
