* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f1;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 6vw 80px;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid #d7d2c9;
  background: #fefbf7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 12px;
  background: #e9e1d7;
  border-radius: 999px;
  font-size: 0.85rem;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.section-title {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 1.1rem;
  margin: 0 0 24px;
  color: #4b4b4b;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #101010;
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1f3a64;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #f4ede4;
  color: #1b1b1b;
  border: 1px solid #d7d2c9;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.media-block {
  background: #dcd4c8;
  padding: 12px;
  border-radius: 24px;
}

.media-block img {
  border-radius: 18px;
  width: 100%;
  height: auto;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.pricing {
  font-size: 1.4rem;
  font-weight: 700;
}

.section-accent {
  background: #efe7dc;
  padding: 40px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.section-accent::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #c7b8a7;
  top: -60px;
  right: -80px;
  opacity: 0.4;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  background: #1f3a64;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid #e1d8cc;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c1b7;
  font-size: 1rem;
  background: #fff;
}

.footer {
  padding: 40px 6vw 56px;
  background: #1b1b1b;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-text {
  font-size: 0.95rem;
  color: #d9d2c8;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tagline {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.legal-box {
  background: #f0e8dc;
  padding: 24px;
  border-radius: 18px;
}

.page-header {
  padding: 48px 6vw 32px;
  background: #efe7dc;
}

.page-header h1 {
  margin: 0;
}

.contact-block {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e1d8cc;
}
