* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1c1a1a;
  background: #f5f2ef;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #140f12;
  color: #f6f1ea;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.compact {
  padding: 48px 7vw;
}

.section.dark {
  background: #1b171a;
  color: #f3eee8;
}

.section.light {
  background: #fbf9f6;
}

.hero {
  position: relative;
  color: #f8f4ef;
  background: #141014;
  background-image: url("images/hero-breath.svg");
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  justify-content: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 9, 11, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 18px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #e17d6b;
  color: #1c1a1a;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.inline-cta {
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split > * {
  flex: 1 1 280px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(18, 14, 15, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: 20px 40% 20px 0;
  background: #f0d8cf;
  z-index: 0;
  border-radius: 32px;
}

.layered .layered-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  padding: 16px 18px;
  background: #fff7f3;
  border-radius: 16px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 220px;
  border-radius: 20px;
  padding: 22px;
  background: #161114;
  color: #f5efe8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card strong {
  font-size: 22px;
}

.form-wrapper {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(16, 12, 13, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8cfc7;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #51484a;
}

.testimonial {
  padding: 18px 20px;
  border-left: 3px solid #e17d6b;
  background: #fbf4f0;
  border-radius: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #141014;
  color: #f8f3ed;
  padding: 18px 20px;
  border-radius: 16px;
  display: none;
  gap: 14px;
  max-width: 320px;
  flex-direction: column;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #e17d6b;
}

.cookie-actions .reject {
  background: #fff;
}

.footer {
  padding: 32px 7vw;
  background: #0f0c0d;
  color: #f5efe8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.page-title {
  font-size: 34px;
  margin: 0;
}

.content-block {
  max-width: 880px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
