* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background-color: #f7f6f2;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.top-line {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #524f46;
}

nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a:focus {
  border-color: #1f2328;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 20px 6vw 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.asym-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  background-color: #fdfbf4;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.08);
  border-radius: 14px;
  transform: translateY(-16px);
}

.asym-text.tight {
  transform: translateY(12px);
}

.asym-image {
  flex: 1 1 320px;
  position: relative;
  padding: 16px;
  background-color: #dad6cd;
  border-radius: 22px;
}

.asym-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin: 0;
}

.hero p {
  font-size: 18px;
  max-width: 640px;
}

.hero-cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary {
  background-color: #1f2328;
  color: #f9f8f4;
}

.btn.secondary {
  background-color: transparent;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.card-stack {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.07);
}

.card .img-wrap {
  background-color: #e3e0d9;
  border-radius: 12px;
  overflow: hidden;
}

.badge-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #ece9e2;
  font-size: 13px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-left: 3px solid #1f2328;
  background-color: #fefdf9;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fffaf0;
  padding: 24px;
  border-radius: 18px;
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7c2b7;
  font-size: 14px;
  background-color: #ffffff;
}

.form-wrap button {
  align-self: flex-start;
}

.panel-bg {
  background-color: #e9e4dc;
  padding: 26px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  color: #1f2328;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=800&q=80");
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

.panel-bg.dark {
  color: #f7f6f2;
}

.panel-bg .overlay {
  background-color: rgba(255, 255, 255, 0.82);
  padding: 18px;
  border-radius: 12px;
}

.panel-bg.dark .overlay {
  background-color: rgba(25, 25, 25, 0.7);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testimonial {
  padding: 18px;
  border-radius: 14px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.06);
}

.footer {
  padding: 40px 6vw 80px;
  background-color: #1f2328;
  color: #f9f8f4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f9f8f4;
  text-decoration: underline;
}

.footer-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}

.footer small {
  color: #d8d2c7;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(12, 12, 12, 0.18);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1f2328;
  color: #f9f8f4;
  padding: 12px 16px;
  border-radius: 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 600;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.img-inline {
  background-color: #dcd8d1;
  border-radius: 18px;
  overflow: hidden;
}

.img-inline img {
  width: 100%;
  height: 100%;
}

.legal {
  max-width: 820px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0 6vw 24px;
    border-radius: 999px;
    text-align: center;
  }
}
