* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b2428;
  --muted: #54626a;
  --accent: #0f6a7a;
  --accent-2: #134c5a;
  --bg: #f6f7f8;
  --soft: #e7eef2;
  --highlight: #f2efe9;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.88;
}

button {
  cursor: pointer;
  border: none;
  font: inherit;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
}

button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 20px 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand-name {
  margin: 0;
  text-transform: lowercase;
  letter-spacing: 1px;
  font-size: 1.8rem;
  font-weight: 700;
}

.ad-label {
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-image {
  flex: 1;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background: #dbe4e9;
}

.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.split-band {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.offset-panel {
  flex: 1;
  background: var(--highlight);
  border-radius: 22px;
  padding: 24px;
  position: relative;
  top: -18px;
}

.offset-panel.secondary {
  background: #fff;
  top: 22px;
}

.panel-title {
  margin-top: 0;
}

.image-frame {
  background: #dfe7ec;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  margin-top: 60px;
}

.section h2 {
  margin-top: 0;
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-2);
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent-2);
  font-weight: 600;
}

.process-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
}

.form-shell {
  background: var(--soft);
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9d3d9;
  font: inherit;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-grid .field {
  flex: 1 1 240px;
}

.footer {
  margin-top: 80px;
  background: #0d2f38;
  color: #e7f0f2;
  padding: 40px 20px;
}

.footer a {
  color: #bfe3ea;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c7d8dd;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

.band {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  background-color: #eef3f6;
  border-radius: 24px;
  padding: 24px;
}

.band .text-block {
  flex: 1;
}

.band .image-block {
  flex: 1;
  min-height: 220px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d5e1e7;
}

.legal-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

@media (max-width: 900px) {
  .hero,
  .split-band,
  .band {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
