* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #112118;
  background: #f4f6f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  background: #0f1f1a;
  color: #f4f6f1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-note {
  font-size: 0.85rem;
  opacity: 0.7;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 48px 80px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  border-radius: 28px;
  padding: 64px;
  color: #f4f6f1;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  max-width: 520px;
}

.hero p {
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #f0f27a;
  color: #0f1f1a;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(244, 246, 241, 0.6);
  color: #f4f6f1;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-size: 1.4rem;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(17, 33, 24, 0.08);
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.highlight {
  background: #e1efe5;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.pricing-item span {
  font-weight: 600;
}

.form-wrap {
  background: #0f1f1a;
  color: #f4f6f1;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #d6e0d5;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #1c3a2f;
  color: #f4f6f1;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  color: #1c3a2f;
  text-decoration: underline;
  font-weight: 600;
}

.banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.banner button {
  width: 100%;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
  padding-top: 16px;
  border-top: 1px solid rgba(17, 33, 24, 0.08);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #f0f27a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.quote {
  font-style: italic;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(17, 33, 24, 0.08);
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main {
    padding: 32px 24px 64px;
  }

  .hero {
    padding: 48px 32px;
  }
}
