* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f6f7f9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.topbar {
  background: #101722;
  color: #f9f9fb;
  font-size: 0.85rem;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ad-label {
  background: #e8c38b;
  color: #2b1e10;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
}

header {
  padding: 22px 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-cta {
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 28px;
  background: #2f61f3;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #e6ebff;
  color: #1c2c5b;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #2f61f3;
  color: #2f61f3;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.media {
  background-color: #e2e6ec;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(16, 23, 34, 0.12);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media.min-360 {
  min-height: 360px;
}

.media.min-320 {
  min-height: 320px;
}

.media.min-300 {
  min-height: 300px;
}

.media.min-280 {
  min-height: 280px;
}

.media.min-260 {
  min-height: 260px;
}

.media.min-420 {
  min-height: 420px;
}

.mt-22 {
  margin-top: 22px;
}

.mt-28 {
  margin-top: 28px;
}

section {
  padding: 64px 0;
}

.section-contrast {
  background: #ffffff;
}

.section-dark {
  background: #101722;
  color: #f4f6fa;
}

.section-accent {
  background: #edf1ff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 36, 48, 0.08);
}

.card img {
  border-radius: 12px;
  margin-bottom: 16px;
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #dfe4ea;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
}

.form-panel {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(23, 32, 48, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9d1e1;
  font-size: 0.95rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  padding: 12px 18px;
  background: #1f7a5a;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  padding: 50px 0 70px;
  background: #0c111a;
  color: #d3d8e3;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #b7c0cf;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  background: #ffffff;
  color: #1f2430;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  display: none;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 760px;
  width: calc(100% - 40px);
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #2f61f3;
  color: #fff;
}

.cookie-reject {
  background: #e6ebff;
  color: #1c2c5b;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(31, 36, 48, 0.1);
}

.legal {
  padding: 50px 0 80px;
}

.legal h1 {
  margin-bottom: 16px;
}

.legal h2 {
  margin-top: 32px;
}

.notice {
  background: #fff3d6;
  padding: 16px;
  border-radius: 14px;
}
