* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1b1b1b;
  background: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #171717;
  color: #f5f3f0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 22px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #cbbba0;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.nav a:hover,
.nav a:focus {
  background: rgba(255, 255, 255, 0.14);
}

.sidebar .cta {
  background: #f3c84b;
  color: #1b1b1b;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-align: center;
}

.content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

section {
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.08);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: center;
  background: #fff8e2;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
}

.hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.alt {
  background: transparent;
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}

.inline-link {
  color: #2f4a69;
  text-decoration: underline;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #f3f3f1;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dark-section {
  background: #1b1b1b;
  color: #fdfaf4;
}

.bg-section {
  position: relative;
  color: #fdfaf4;
  background-image: url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
  z-index: 0;
}

.bg-section > * {
  position: relative;
  z-index: 1;
}

.dark-section .button {
  background: #f3c84b;
  color: #1b1b1b;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e2d5c0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card h3 {
  margin: 0;
}

.price {
  font-size: 28px;
  font-weight: 700;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfc7bd;
  font-size: 16px;
  width: 100%;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #5b574f;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #171717;
  color: #f9f5ef;
  padding: 16px 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f3c84b;
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 15;
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: #f3c84b;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.notice {
  background: #efe6d8;
  border-radius: 16px;
  padding: 18px;
}

.page-title {
  margin: 0;
  font-size: 32px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 24px;
  }

  .hero {
    flex-direction: column;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }
}
