* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1a1a;
  --muted: #5d6366;
  --accent: #1e6b73;
  --accent-soft: #e3f1f2;
  --paper: #f6f4f1;
  --sand: #efe7dd;
  --night: #0f2024;
  --panel: #ffffff;
  --shadow: 0 20px 40px rgba(16, 32, 36, 0.15);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 12px;
}

.top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
  text-align: right;
}

main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section-tight {
  padding: 50px 6vw;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: var(--panel);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  border-radius: 14px;
  background-color: #d8e1e4;
}

.hero {
  background: var(--night);
  color: #f7f7f2;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  display: flex;
  gap: 48px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  max-width: 520px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero-image {
  background-color: #29373c;
  border-radius: 30px;
  padding: 16px;
}

.hero-image img {
  width: 420px;
  height: 360px;
  border-radius: 20px;
}

h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(32px, 4vw, 44px);
}

h2 {
  font-size: clamp(26px, 3.2vw, 34px);
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn:focus {
  outline: 3px solid rgba(30, 107, 115, 0.3);
  outline-offset: 2px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.offset-block {
  background: var(--sand);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  margin-left: auto;
  max-width: 560px;
}

.floating-image {
  background-color: #dfe6e8;
  border-radius: 24px;
  padding: 14px;
  max-width: 420px;
}

.floating-image img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.band {
  background: var(--accent-soft);
}

.band-image {
  background-image: url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.band-image .offset-block {
  background: rgba(15, 32, 36, 0.72);
  color: #ffffff;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
}

.form-shell {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 560px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cdd5d8;
  font-size: 16px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 30;
}

.sticky-cta button {
  box-shadow: var(--shadow);
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--night);
  color: #f7f7f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
}

.footer-card {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e2e2e2;
  padding: 16px 6vw;
  display: none;
  z-index: 40;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.muted-small {
  font-size: 13px;
  color: var(--muted);
}

.page-hero {
  padding-top: 30px;
}

.page-hero img {
  width: 100%;
  height: 320px;
  border-radius: 22px;
  background-color: #d7dedf;
}

.wide-image {
  background-color: #d7dedf;
  border-radius: 22px;
  padding: 12px;
}

.wide-image img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spacer {
  height: 20px;
}

@media (max-width: 860px) {
  .hero-image img {
    width: 100%;
    height: 280px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
