* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1f24;
  background: #f6f7fb;
  line-height: 1.6;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #121826;
  color: #f8fafc;
  font-size: 0.92rem;
  padding: 0.75rem 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.nav a,
.nav span {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 600;
}

.ad-label {
  font-weight: 500;
  opacity: 0.9;
}

.hero {
  background: #0f172a;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
  padding: 5.5rem 0 6rem;
}

.hero-content {
  max-width: 560px;
  background: rgba(15, 23, 42, 0.76);
  padding: 2.5rem;
  border-radius: 16px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button,
.link-button {
  border: none;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.button {
  background: #f97316;
  color: #0b0f19;
}

.link-button {
  background: transparent;
  color: #f8fafc;
  border: 2px solid #f8fafc;
}

.section {
  padding: 4.5rem 0;
}

.section.alt {
  background: #ffffff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.split {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.media-frame {
  background: #dde3ef;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-weight: 700;
  color: #ea580c;
  font-size: 1.1rem;
}

.trust-band {
  background: #111827;
  background-image: url("https://images.unsplash.com/photo-1545239351-1141bd82e8a6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
}

.trust-panel {
  background: rgba(15, 23, 42, 0.8);
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 720px;
}

.testimonial {
  background: #f8fafc;
  border-left: 6px solid #f97316;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.form-wrap {
  background: #0f172a;
  color: #f8fafc;
  padding: 2.5rem;
  border-radius: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

label {
  font-weight: 600;
}

input,
select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: none;
}

.footer {
  background: #0b0f19;
  color: #cbd5f5;
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin-top: 1rem;
}

.footer a {
  color: #cbd5f5;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #14b8a6;
  color: #0b0f19;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  color: #0b0f19;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn.accept {
  background: #16a34a;
  color: #ffffff;
}

.cookie-btn.reject {
  background: #e2e8f0;
  color: #0b0f19;
}

.legal-hero {
  padding: 3.5rem 0 2rem;
  background: #ffffff;
}

.legal-content {
  padding: 2rem 0 4rem;
}

.note {
  background: #eef2ff;
  padding: 1.2rem;
  border-radius: 12px;
}

.small-media {
  height: 220px;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}
