* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 0 96px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  background: linear-gradient(rgba(12, 12, 12, 0.55), rgba(12, 12, 12, 0.55)),
    url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 96px 0 120px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  max-width: 560px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #a32a1f;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn.alt {
  background: #1b1b1b;
}

.link-cta {
  color: #a32a1f;
  text-decoration: underline;
  font-weight: 600;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.panel.dark {
  background: #1f1c1a;
  color: #fff;
}

.panel.accent {
  background: #ede2d2;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #a32a1f;
  font-weight: 700;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  flex: 1 1 180px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 18px;
}

.card img {
  height: 200px;
  object-fit: cover;
}

.card .card-body {
  padding: 0 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card {
  border: 1px solid #ddd3c6;
}

.pricing-card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-panel {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9c1b7;
  font-size: 1rem;
}

button[type="submit"] {
  border: none;
  cursor: pointer;
}

.banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1b1b1b;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.banner button {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
}

.banner button.primary {
  background: #fff;
  color: #1b1b1b;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 90px;
  background: #a32a1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  z-index: 40;
}

.footer {
  background: #121110;
  color: #fff;
  padding: 40px 0 60px;
}

.footer .nav {
  color: #e4ddd4;
}

.subtle {
  color: #5c544c;
  font-size: 0.95rem;
}

.inline-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hero-inner {
    max-width: 620px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
