* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2230;
  background: #f6f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f5f2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1c2230;
}

main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  padding: 72px 6vw;
  position: relative;
  overflow: hidden;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #101725;
  color: #f4f4ef;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #6e7788;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1c2230;
  background: #1c2230;
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: #1c2230;
}

.btn.light {
  background: #f4f4ef;
  color: #101725;
  border-color: #f4f4ef;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(28, 34, 48, 0.18);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.highlight-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(16, 23, 37, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  padding: 8px 16px;
  border-radius: 999px;
  background: #f1ede3;
  font-size: 0.85rem;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(28, 34, 48, 0.1);
}

.card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.card .meta {
  font-size: 0.9rem;
  color: #6e7788;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #f9a826;
  border-radius: 50%;
}

.layered {
  background: linear-gradient(140deg, #f6f5f2 30%, #e8eefc 100%);
}

.layered .floating-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  margin-top: -40px;
  box-shadow: 0 18px 40px rgba(15, 20, 31, 0.15);
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 36px rgba(28, 34, 48, 0.1);
}

label {
  font-size: 0.85rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d5dd;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.sticky-cta a {
  background: #f9a826;
  color: #1c2230;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(28, 34, 48, 0.2);
}

.site-footer {
  background: #101725;
  color: #f4f4ef;
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(28, 34, 48, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .hero .panel:first-child {
    padding-right: 36px;
  }

  .section {
    padding: 90px 8vw;
  }
}
