* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2a37;
  --muted: #5b6776;
  --accent: #1a5cff;
  --accent-soft: #e7efff;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --line: #e1e6ef;
  --shadow: 0 20px 40px rgba(19, 36, 66, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 0 80px;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.2rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 40px 6vw 10px;
}

.hero .text {
  flex: 1 1 360px;
  background: var(--panel);
  padding: 32px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero .media {
  flex: 1 1 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #dbe6ff;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.hero .media img {
  width: 100%;
  height: 100%;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 0 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.split .text {
  background: var(--panel);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.split .media {
  background: #e3ecff;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.split .media img {
  width: 100%;
  height: 100%;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 6vw;
}

.card {
  flex: 1 1 240px;
  background: var(--panel);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media {
  border-radius: 14px;
  overflow: hidden;
  background: #e9f0ff;
}

.card .media img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.highlight {
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 28px;
  margin: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #0f1f3d;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.form-section {
  padding: 0 6vw;
}

form {
  background: var(--panel);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 20;
  border-radius: 999px;
  padding: 12px 20px;
  border: none;
  background: #ffb347;
  color: #1b1b1b;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.footer {
  background: #0f1f3d;
  color: #d4dbea;
  padding: 40px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: #d4dbea;
}

.footer .legal {
  max-width: 520px;
  font-size: 0.9rem;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 10px;
}

.wide-panel {
  background: url("https://images.unsplash.com/photo-1507209696998-3c532be9b2b5?w=1400&q=80") center/cover no-repeat;
  padding: 60px 6vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wide-panel .panel-content {
  max-width: 640px;
  background: rgba(15, 31, 61, 0.85);
  padding: 26px;
  border-radius: 18px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 22px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: none;
  gap: 10px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 6vw 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.page-hero .text {
  flex: 1 1 340px;
  background: var(--panel);
  padding: 26px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.page-hero .media {
  flex: 1 1 340px;
  background: #dbe6ff;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.page-hero .media img {
  width: 100%;
  height: 100%;
}

.contact-block {
  background: var(--panel);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-page {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--panel);
  margin: 0 6vw;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.legal-page h2 {
  margin: 0;
}
