* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1d24;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1b4b7a;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f6f4f1;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: #5b4a37;
  background: #efe6db;
  padding: 6px 12px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e0d9d1;
}

.nav-label {
  align-self: center;
}

main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero {
  background: #dfe6ef;
}

.hero .media-col {
  background-color: #263247;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(9, 19, 36, 0.2), rgba(9, 19, 36, 0.4));
}

.hero .hero-note {
  position: relative;
  color: #ffffff;
  font-size: 1rem;
  max-width: 320px;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1b4b7a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  max-width: 220px;
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: #1b4b7a;
  border: 1px solid #1b4b7a;
}

.link-cta {
  color: #8a5b2e;
  font-weight: 600;
}

.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #ece6df;
}

.img-frame {
  background-color: #d8d3cc;
  border-radius: 20px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #ece6df;
}

.service-card .img-frame {
  width: 140px;
  height: 110px;
  flex-shrink: 0;
}

.price {
  font-weight: 700;
  color: #1b4b7a;
}

.highlight {
  background: #f0ede9;
  border-radius: 28px;
}

.note-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.note-chip {
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #ece6df;
  font-size: 0.95rem;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #ece6df;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input, select, textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d2c9c1;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 6vw;
  background: #1b4b7a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(27, 75, 122, 0.3);
  z-index: 20;
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

footer {
  padding: 40px 6vw 80px;
  background: #101923;
  color: #f4f1ec;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f0d2a2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 6vw;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e3dbd2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.bg-vision {
  background: #eef1f5;
}

.bg-vision .media-col {
  background-color: #2b3748;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  min-height: 280px;
}

.bg-process .media-col {
  background-color: #2b3c4e;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  min-height: 280px;
}

.bg-trust {
  background: #f4efe8;
}

.inline-img {
  width: 100%;
  height: 260px;
}

@media (max-width: 980px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 4vw;
    left: 4vw;
    justify-content: center;
  }
}
