@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #f6f7fb;
  --ink: #1b1b1f;
  --muted: #525866;
  --accent: #1a5bff;
  --accent-dark: #0e3fc2;
  --soft: #ffffff;
  --line: #e6e8ef;
  --shadow: 0 24px 60px rgba(15, 20, 40, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 20px;
}

main {
  flex: 1;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 70px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split__media {
  flex: 1;
}

.eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow);
}

.card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
}

.card-price {
  font-weight: 700;
}

.img-frame {
  background-color: #dfe6f3;
  border-radius: 22px;
  overflow: hidden;
}

.banner {
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding: 20px 28px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.section-bg {
  background-color: #ecf1ff;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section-panel {
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-card {
  background: var(--soft);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  font-weight: 600;
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: "Inter", sans-serif;
}

footer {
  background: #0c0f1a;
  color: #f5f7ff;
  padding: 30px 28px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.plain-email {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: var(--soft);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
