:root {
  --ink: #1b1b1b;
  --muted: #5c5f66;
  --accent: #6b4fd8;
  --accent-soft: #e9e3ff;
  --sand: #f6f2ee;
  --mist: #eef1f6;
  --leaf: #dde6dd;
  --stone: #c9cfd8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fcfbfa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  overflow: hidden;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  padding: 24px 0 8px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ececec;
}

.ad-label {
  font-size: 0.82rem;
  color: #5d4a37;
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #eadfda;
}

.hero {
  padding: 48px 0 72px;
}

.hero-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 420px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-media {
  flex: 1 1 380px;
  position: relative;
  padding: 18px;
}

.img-frame {
  background: var(--mist);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid #d8d8d8;
}

.link-inline {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section-light {
  background: var(--sand);
}

.section-mist {
  background: var(--mist);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section p {
  color: var(--muted);
}

.offset-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1 1 360px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
}

.offset-card h3 {
  margin-top: 0;
}

.offset-media {
  flex: 1 1 320px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h4 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.82rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
}

.bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
  background: var(--leaf);
}

.bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-content {
  position: relative;
  z-index: 1;
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-panel label {
  font-weight: 600;
  display: block;
  margin-top: 12px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 8px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  font-size: 0.95rem;
}

.form-panel textarea {
  min-height: 100px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 8px;
}

.aside-panel {
  flex: 1 1 260px;
  background: var(--mist);
  border-radius: 18px;
  padding: 18px;
}

.aside-panel h3 {
  margin-top: 0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f1f1f;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.92rem;
  z-index: 20;
  border: none;
  cursor: pointer;
}

footer {
  background: #101015;
  color: #f6f3ee;
  padding: 50px 0 70px;
}

.footer-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h4 {
  margin-top: 0;
}

.disclaimer {
  font-size: 0.88rem;
  color: #d0c7bf;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e6e6e6;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.cookie-banner p {
  flex: 1 1 220px;
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.utility-page {
  padding: 70px 0 90px;
}

.utility-hero {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}

.utility-hero .img-frame {
  max-width: 420px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.table-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eeeeee;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.contact-card div {
  flex: 1 1 200px;
}

.small-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.hidden {
  display: none;
}
