* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1a2b;
  --ink-soft: #2d2c45;
  --night: #0e0d1b;
  --sky: #f3f0ff;
  --violet: #5b4b8a;
  --gold: #c6a96e;
  --mist: #e4e0f3;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fcfbff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw 10px;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--mist);
  padding: 6px 10px;
  border-radius: 14px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 10px 6vw 60px;
  position: relative;
}

.hero-split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 340px;
  background: var(--sky);
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(27, 26, 43, 0.1);
  position: relative;
  top: 12px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-copy p {
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  background: var(--violet);
  color: #fff;
  padding: 12px 22px;
  border-radius: 22px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--violet);
  border: 1px solid var(--violet);
}

.hero-visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.image-card {
  background: #cfd0e6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 16, 28, 0.2);
}

.image-card.tall {
  height: 330px;
}

.image-card.wide {
  height: 210px;
}

.floating-card {
  background: var(--card);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(16, 16, 28, 0.12);
  position: absolute;
  right: 8vw;
  bottom: -40px;
  max-width: 320px;
}

.floating-card h3 {
  margin: 0 0 12px;
}

.section {
  padding: 80px 6vw;
  position: relative;
}

.section.dark {
  background: var(--night);
  color: #f3f1ff;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--gold);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--card);
  padding: 24px;
  border-radius: 22px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(16, 16, 28, 0.08);
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item .price {
  font-weight: 700;
  color: var(--violet);
}

.service-image {
  width: 220px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split-block .text {
  flex: 1 1 320px;
}

.split-block .visual {
  flex: 1 1 320px;
}

.highlight {
  background: var(--mist);
  padding: 30px;
  border-radius: 26px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(16, 16, 28, 0.12);
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d7d6e8;
  font-size: 0.95rem;
  width: 100%;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-row > div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #4f4d63;
}

.footer {
  padding: 40px 6vw 60px;
  background: #151425;
  color: #e7e4ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-card {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--violet);
  color: #fff;
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 16px 30px rgba(22, 20, 40, 0.3);
  z-index: 5;
}

.sticky-cta button {
  background: #fff;
  color: var(--violet);
  border: none;
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  color: var(--ink);
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(16, 16, 28, 0.2);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 50px 6vw 30px;
  background: var(--mist);
}

.page-hero h1 {
  margin: 0 0 12px;
}

.content {
  padding: 30px 6vw 70px;
}

.content article {
  max-width: 820px;
}

.inline-image {
  background: #d6d8eb;
  border-radius: 22px;
  overflow: hidden;
  margin: 24px 0;
}

.legal-box {
  background: #f1f0fb;
  padding: 20px;
  border-radius: 18px;
  margin-top: 18px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-36 {
  margin-top: 36px;
}

.bg-night-1 { background-color: #2a2b44; }
.bg-night-2 { background-color: #262435; }
.bg-night-3 { background-color: #343355; }
.bg-night-4 { background-color: #1f2031; }
.bg-night-5 { background-color: #1e1f34; }
.bg-night-6 { background-color: #1a1c2f; }
.bg-night-7 { background-color: #23233a; }
.bg-night-8 { background-color: #2a2a40; }
.bg-night-9 { background-color: #2b2b3f; }

@media (max-width: 900px) {
  .floating-card {
    position: static;
    max-width: none;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
