* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c2330;
  background: #f7f7f4;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0;
  border-bottom: 1px solid #d5d7db;
  background: #fffdf9;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #4a5362;
  border: 1px solid #cfd3d8;
  padding: 6px 10px;
  border-radius: 20px;
  background: #f0f2f5;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 30px;
  padding: 12px 20px;
  font-weight: 600;
  border: 1px solid #2b3340;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button {
  background: #2b3340;
  color: #ffffff;
}

.button:hover,
.button:focus {
  background: #18202c;
}

.ghost-button {
  background: transparent;
  color: #2b3340;
}

.ghost-button:hover,
.ghost-button:focus {
  background: #e7e9ed;
}

.hero {
  padding: 56px 0 40px;
  background: #fffdf9;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-copy p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-media,
.media-card {
  border-radius: 18px;
  overflow: hidden;
  background: #e7eaef;
}

.hero-media img,
.media-card img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 50px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.muted {
  color: #525b6a;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(24, 32, 44, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-size: 1.2rem;
  font-weight: 700;
}

.panel-bg {
  background: linear-gradient(rgba(247, 247, 244, 0.9), rgba(247, 247, 244, 0.9)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.form-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 30px rgba(24, 32, 44, 0.08);
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9ced6;
  font-size: 1rem;
}

.form-shell button {
  align-self: flex-start;
}

.inline-link {
  text-decoration: underline;
}

.footer {
  margin-top: auto;
  padding: 32px 0;
  background: #1f2430;
  color: #e9edf2;
}

.footer a {
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #2b3340;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(24, 32, 44, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  padding: 16px 20px;
  border-left: 4px solid #2b3340;
  background: #f0f2f5;
  border-radius: 10px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.hero-compact {
  padding: 42px 0;
  background: #fffdf9;
}

.hero-compact .hero-media {
  max-height: 320px;
}

.muted-card {
  background: #f0f2f5;
  border-radius: 16px;
  padding: 18px;
}
