@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #1c2431;
  --muted: #526070;
  --accent: #4a6fae;
  --accent-2: #6a4fa3;
  --paper: #f6f5f2;
  --mist: #eef1f6;
  --sand: #efe7df;
  --sunset: #f3e6f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-2);
}

.page {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.topbar {
  padding: 24px 6vw 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(28, 36, 49, 0.15);
  padding-bottom: 18px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.nav-links,
.nav-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6vw 0;
}

.hero-card {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--mist);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 30px 60px rgba(34, 44, 64, 0.08);
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 0.9;
  min-height: 320px;
  border-radius: 22px;
  background-color: #d7dce5;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--accent);
  border: 1px solid rgba(74, 111, 174, 0.4);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

.offset-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1;
  min-width: 240px;
}

.offset-card {
  flex: 1;
  min-width: 260px;
  background: var(--sunset);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(66, 54, 90, 0.1);
}

.img-frame {
  background-color: #d8d4dc;
  border-radius: 20px;
  overflow: hidden;
}

.img-frame.large {
  min-height: 280px;
}

.img-frame.medium {
  min-height: 220px;
}

.img-frame.small {
  min-height: 180px;
}

.img-frame img {
  width: 100%;
  height: 100%;
}

.steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  background: white;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(28, 36, 49, 0.08);
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
  background: white;
  border-radius: 24px;
  padding: 22px;
  border: 1px solid rgba(28, 36, 49, 0.08);
}

.service-info {
  flex: 1.4;
  min-width: 220px;
}

.service-media {
  flex: 1;
  min-width: 220px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 20px;
}

.stat-band {
  background: var(--sand);
  padding: 30px;
  border-radius: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat {
  flex: 1;
  min-width: 200px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: white;
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(20, 30, 40, 0.2);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 5;
}

.floating-cta span {
  font-size: 14px;
  color: var(--muted);
}

.form-section {
  background: var(--mist);
  padding: 36px;
  border-radius: 28px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(28, 36, 49, 0.2);
  font-family: inherit;
}

.footer {
  padding: 40px 6vw 60px;
  background: #121826;
  color: #cbd2dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #9bb4ff;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-note {
  font-size: 13px;
  color: #9ea7b6;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: white;
  color: var(--ink);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(20, 30, 40, 0.2);
  max-width: 320px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 20px 6vw 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero span {
  color: var(--muted);
}

.list-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-box {
  background: white;
  border-radius: 24px;
  padding: 26px;
  border: 1px solid rgba(28, 36, 49, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-flow {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 28px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.bg-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 38, 0.55);
}

.bg-flow > * {
  position: relative;
  z-index: 1;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 18px;
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(28, 36, 49, 0.08);
}

.thanks-box {
  background: var(--sunset);
  border-radius: 24px;
  padding: 32px;
}

@media (max-width: 900px) {
  .hero-card {
    flex-direction: column;
  }

  .floating-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
