@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f6f4f1;
  --ink: #151515;
  --muted: #5c5c5c;
  --accent: #c74a2b;
  --accent-soft: #f7d7cb;
  --panel: #ffffff;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 28px;
  background: #141414;
  color: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar nav a {
  font-size: 0.95rem;
  color: #f6f6f6;
  opacity: 0.85;
}

.sidebar nav a:hover {
  opacity: 1;
}

.side-cta {
  margin-top: auto;
  padding: 12px 16px;
  background: var(--accent);
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  color: #fff;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 56px 120px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.backdrop-section {
  background: linear-gradient(120deg, rgba(21, 21, 21, 0.78), rgba(21, 21, 21, 0.2)),
    url('https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #fff;
  padding: 32px;
  border-radius: 28px;
}

.backdrop-section .section-cta {
  border-color: #fff;
  color: #fff;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  background: #fff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  flex: 1;
}

.hero h1 {
  font-size: 2.8rem;
  margin: 0 0 12px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.card {
  background: var(--panel);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cards-row .card {
  flex: 1 1 220px;
}

.panel {
  background: #fff6f2;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  gap: 24px;
}

.panel.reverse {
  flex-direction: row-reverse;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.service-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(199, 74, 43, 0.2);
}

.service-price {
  font-size: 1.2rem;
  font-weight: 600;
}

.section-cta {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
}

.form-shell {
  background: #141414;
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  gap: 32px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

form button {
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #141414;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  align-self: flex-end;
  margin-right: 24px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.sticky-cta a {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  background: #151515;
  color: #eee;
  padding: 28px 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #fff;
  opacity: 0.8;
  margin-right: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #f1f1f1;
}

.page-title {
  font-size: 2.2rem;
  margin: 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .side-cta {
    margin-top: 0;
  }

  main {
    padding: 32px 24px 120px;
  }

  .hero,
  .split,
  .panel,
  .form-shell {
    flex-direction: column;
  }

  .sticky-cta {
    align-self: center;
    margin-right: 0;
  }
}
