* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f3ef;
  --ink: #231f20;
  --muted: #5d5a58;
  --accent: #6b2fb9;
  --accent-dark: #4a1f86;
  --paper: #ffffff;
  --sand: #efe7da;
  --shadow: 0 18px 40px rgba(20, 10, 30, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: var(--paper);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
}

.nav a:hover {
  color: var(--accent);
}

.side-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  background: var(--bg);
}

.section.alt {
  background: var(--sand);
}

.section.paper {
  background: var(--paper);
}

.section.compact {
  padding: 40px 8vw;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-media {
  flex: 1 1 300px;
  position: relative;
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--accent);
  color: var(--paper);
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-weight: 600;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--paper);
  border-radius: 16px;
  padding: 22px;
  flex: 1 1 220px;
  min-width: 220px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.tag {
  display: inline-block;
  background: rgba(107, 47, 185, 0.1);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: rgba(107, 47, 185, 0.08);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-option {
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--paper);
  flex: 1 1 200px;
  cursor: pointer;
  transition: border 0.2s ease, transform 0.2s ease;
}

.service-option.active {
  border: 2px solid var(--accent);
  transform: translateY(-4px);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1 1 200px;
}

.footer {
  background: var(--paper);
  padding: 32px 8vw;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--paper);
  padding: 18px;
  max-width: 320px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: 21;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.notice {
  background: rgba(107, 47, 185, 0.08);
  padding: 18px;
  border-radius: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-stack img {
  border-radius: 22px;
}

.overlay-block {
  background: var(--paper);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-top: -40px;
  max-width: 480px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
