* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d232c;
  --muted: #5a6573;
  --accent: #1f6f8b;
  --accent-2: #a05d2b;
  --soft: #f3f4f6;
  --soft-2: #e6edf2;
  --sand: #f5efe8;
  --mint: #e6f1ee;
}

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;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 24px 0 120px;
}

header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 600;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 6px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  background: #f8fbfd;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-visual {
  flex: 1 1 320px;
  min-width: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--soft);
}

.split-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero {
  padding-top: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  margin: 0 0 18px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 24px;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.btn-secondary {
  background: var(--soft-2);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid var(--accent-2);
  color: var(--accent-2);
  background: transparent;
}

.panel {
  padding: 32px;
  border-radius: 24px;
  background: var(--soft);
}

.panel.alt {
  background: var(--sand);
}

.panel.mint {
  background: var(--mint);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e9ef;
  display: flex;
  flex-direction: column;
}

.service-card .image-frame {
  background: #eef2f6;
}

.image-frame img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

.service-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent-2);
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #e6edf2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dee6;
  font-size: 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-link {
  text-decoration: underline;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #d7dee6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta a {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
}

.footer {
  padding: 48px 6vw 60px;
  background: #f8fafb;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #d7dee6;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 12;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.background-block {
  background: var(--soft-2);
  padding: 40px 0;
}

.background-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 32px;
}

.legal-content {
  padding: 0 6vw 80px;
  max-width: 860px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-top: 0;
}

@media (max-width: 820px) {
  .sticky-cta {
    position: static;
    margin: 0 6vw 24px;
  }
}
