* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #18222d;
  background: #f6f7fb;
  line-height: 1.6;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e2e7ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #18222d;
  font-size: 0.9rem;
}

.ad-label {
  font-size: 0.75rem;
  color: #7a8796;
  max-width: 240px;
  text-align: right;
}

.section {
  padding: 64px 6%;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #15202b;
  color: #f3f6fb;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.image-box {
  background-color: #d7dde6;
  border-radius: 16px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero {
  padding: 80px 6% 48px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f4b99;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border: none;
}

.btn.secondary {
  background: #f1f4fa;
  color: #1f4b99;
}

.inline-link {
  color: #1f4b99;
  text-decoration: underline;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-grid.spaced {
  margin-top: 24px;
}

.service-card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e3e8f0;
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card .price {
  font-weight: 700;
  color: #1f4b99;
}

.service-card .image-box {
  border-radius: 14px;
}

.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #d7dde6;
}

.process-band {
  background-color: #1b2735;
  background-image: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
}

.process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 29, 0.72);
}

.process-band .content {
  position: relative;
  z-index: 1;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 14px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e3e8f0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

select,
input {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd7e6;
  font-size: 0.95rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  background: #ffb703;
  color: #1c1f26;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.footer {
  background: #10151c;
  color: #d8dee7;
  padding: 36px 6%;
  margin-top: auto;
}

.footer a {
  color: #d8dee7;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal {
  margin-top: 18px;
  font-size: 0.85rem;
  color: #b8c1cc;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(18, 32, 51, 0.2);
  max-width: 320px;
  z-index: 6;
  border: 1px solid #e2e7ef;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1f4b99;
  color: #ffffff;
}

.cookie-actions .reject {
  background: #e6ebf5;
  color: #1f4b99;
}

.simple-hero {
  padding: 56px 6%;
  background: #ffffff;
}

.simple-hero h1 {
  font-size: 2.2rem;
}

.content-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.content-block .block {
  flex: 1 1 300px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e2e7ef;
}

.list {
  margin-left: 18px;
}
