* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f2ee;
  --text: #1f2428;
  --muted: #59636b;
  --accent: #6c4cf0;
  --accent-dark: #4b32b8;
  --soft: #efe7dd;
  --card: #ffffff;
  --line: #e1d9cf;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 8vw 10px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: var(--soft);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(31, 36, 40, 0.18);
  font-size: 0.95rem;
  z-index: 10;
}

.sticky-cta:hover {
  background: var(--accent-dark);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 8vw 70px;
  align-items: stretch;
  position: relative;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.hero-visual {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.hero-card {
  background: var(--card);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(31, 36, 40, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(20px);
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  background: #d8d1c7;
  min-height: 220px;
}

.asym-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 60px 8vw;
  align-items: center;
  position: relative;
}

.asym-section.reverse {
  flex-direction: row-reverse;
}

.asym-section .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asym-section .image-block {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background: #d8d1c7;
  min-height: 240px;
}

.floating-panel {
  background: var(--card);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(31, 36, 40, 0.12);
  max-width: 420px;
}

.panel-offset {
  margin-top: -40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
}

.service-card img {
  border-radius: 12px;
  background: #d8d1c7;
}

.service-price {
  font-weight: 600;
  color: var(--accent-dark);
}

.cta-strip {
  margin-top: 28px;
  padding: 18px;
  border-radius: 14px;
  background: var(--soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.form-section {
  background: #fff;
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-select {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-option {
  flex: 1 1 200px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-option input {
  accent-color: var(--accent);
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.form-hidden {
  display: none;
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background: #ece3d8;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  box-shadow: 0 10px 20px rgba(31, 36, 40, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 40px 8vw 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.page-hero .page-image {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #d8d1c7;
  min-height: 240px;
}

.page-content {
  padding: 50px 8vw 70px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.split-list .list-card {
  flex: 1 1 260px;
  padding: 16px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
}

.legal-section {
  background: #fff;
  padding: 50px 8vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-section h2 {
  font-size: 1.3rem;
}
