* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1b4b6f;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background: #f0ece6;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.ad-disclosure {
  font-size: 0.8rem;
  color: #4b4f56;
  max-width: 340px;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1b4b6f;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 6vw 20px;
}

.hero .split {
  align-items: stretch;
}

.section {
  padding: 60px 6vw;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: #efeae2;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
}

.panel.dark {
  background: #1c2b36;
  color: #f5f6f7;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d7d1c9;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.frame-sand {
  background-color: #d8d1c9;
}

.frame-cloud {
  background-color: #cfd5db;
}

.frame-taupe {
  background-color: #d7d1c9;
}

.frame-stone {
  background-color: #cbc7c3;
}

.frame-slate {
  background-color: #d0d4da;
}

.section-title {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: #383f45;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1b4b6f;
  background: #1b4b6f;
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1b4b6f;
}

.btn.light {
  background: #f6f4f1;
  color: #1b1f24;
  border-color: #f6f4f1;
}

.btn:hover {
  transform: translateY(-1px);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(17, 23, 35, 0.12);
}

.card-content {
  padding: 18px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.price {
  font-weight: 700;
  color: #1b4b6f;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccd1d8;
  font-size: 0.95rem;
  background: #ffffff;
}

input:disabled,
textarea:disabled {
  background: #f2f2f2;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(17, 23, 35, 0.2);
}

.footer {
  padding: 40px 6vw;
  background: #101418;
  color: #e2e5e8;
  font-size: 0.9rem;
}

.footer a {
  color: #e2e5e8;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.references {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #c7cbd1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d8dde4;
  padding: 16px 6vw;
  display: none;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  font-size: 0.9rem;
  color: #3f464d;
}

.two-col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 360px;
}

.bg-scenario {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-about-secondary {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 300px;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-services-secondary {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 320px;
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 260px;
}

.bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 260px;
}

.bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 240px;
}

.bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1496317899792-9d7dbcd928a1?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 240px;
}

.bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1496181133206-80ce9b88a853?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 240px;
}

.bg-terms {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=800&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 240px;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 12px;
  }

  .ad-disclosure {
    order: 3;
  }
}
