@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #1d2530;
  --muted: #516173;
  --paper: #f6f7f9;
  --accent: #1b4d8f;
  --accent-2: #6b8dbf;
  --warm: #f2ece3;
  --shadow: rgba(18, 32, 56, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 28px 6vw 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--paper);
  padding: 6px 10px;
  border-radius: 16px;
}

main {
  flex: 1;
}

.hero {
  padding: 40px 6vw 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  position: relative;
}

.hero-copy {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  margin: 0;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
}

.hero-media {
  flex: 1 1 300px;
  position: relative;
  transform: translateY(-12px);
}

.img-frame {
  background: var(--warm);
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 18px 40px var(--shadow);
}

.img-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.offset-panel {
  margin: 0 6vw;
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  position: relative;
  top: -32px;
}

.offset-panel .panel-text {
  flex: 1 1 320px;
}

.offset-panel .panel-text h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.offset-panel .panel-text p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 60px 6vw;
}

.section.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.section.split .text {
  flex: 1 1 320px;
}

.section.split .media {
  flex: 1 1 320px;
}

.section-title {
  margin: 0 0 12px;
  font-size: 1.8rem;
}

.muted {
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.background-band {
  background: var(--paper);
}

.background-image {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 48px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.bg-portal {
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
  background-color: #274060;
}

.background-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 32, 55, 0.55);
}

.background-image .content {
  position: relative;
  z-index: 2;
}

.form-section {
  background: var(--warm);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2d6dc;
  font-family: inherit;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.two-col .col {
  flex: 1 1 220px;
}

footer {
  padding: 40px 6vw;
  background: #101827;
  color: #ffffff;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #ffffff;
}

.disclaimer {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e0e4ea;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -10px 25px var(--shadow);
  z-index: 6;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 6vw 70px;
}

.legal-page h1 {
  margin-top: 0;
}

.image-card {
  background: #edf0f4;
  padding: 12px;
  border-radius: 18px;
}

.image-card img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.list-clean {
  padding-left: 18px;
}

.highlight {
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-wrap {
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }
}
