* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b2430;
  --muted: #5e6a78;
  --accent: #1f4b99;
  --accent-soft: #e7eefb;
  --surface: #f6f3ef;
  --surface-strong: #0f1b2d;
  --line: #d7dce2;
  --highlight: #f9e7c2;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 20px 6vw 10px;
}

.top-nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-tagline {
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--line);
}

.ad-label {
  background: var(--highlight);
  color: #3a2f18;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 12px;
  align-self: center;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 6vw 30px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 40px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 26px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: var(--surface-strong);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover {
  opacity: 0.92;
}

.hero-visual {
  flex: 1 1 380px;
  min-height: 340px;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0.25);
  border-radius: 28px;
}

.hero-visual span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  color: #ffffff;
  font-size: 13px;
  z-index: 1;
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 36px 6vw;
}

.offset-section.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 300px;
  background: var(--surface);
  padding: 26px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 27, 45, 0.08);
  position: relative;
  top: -12px;
}

.offset-card strong {
  display: block;
  margin-bottom: 10px;
}

.inline-image {
  flex: 1 1 280px;
  border-radius: 24px;
  overflow: hidden;
  background: #dbe2ea;
}

.inline-image img {
  width: 100%;
  height: 100%;
}

.stacked-panels {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 6vw 40px;
}

.panel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-radius: 20px;
  padding: 24px;
  background: var(--accent-soft);
}

.panel.dark {
  background: var(--surface-strong);
  color: #ffffff;
}

.panel-image {
  flex: 1 1 220px;
  min-height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background: #c7d2e6;
}

.panel-body {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 10px 6vw 40px;
}

.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(15, 27, 45, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  background: #dbe2ea;
}

.card-image img {
  width: 100%;
  height: 160px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px 6vw 40px;
}

.step {
  flex: 1 1 220px;
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 30px 6vw 60px;
}

.form-wrapper {
  flex: 1 1 360px;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(15, 27, 45, 0.08);
}

.form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrapper label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
}

.form-message {
  font-size: 13px;
  color: var(--muted);
  min-height: 20px;
}

.aside-note {
  flex: 1 1 240px;
  padding: 12px 18px;
  border-left: 2px solid var(--line);
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 26px rgba(15, 27, 45, 0.2);
  z-index: 30;
}

.sticky-cta button {
  background: #ffffff;
  color: var(--accent);
  border: none;
  padding: 6px 12px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta button:hover {
  opacity: 0.9;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  background: var(--surface-strong);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #cbd5e1;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 27, 45, 0.15);
  max-width: 320px;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #eef1f5;
}

.simple-page {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-slab {
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-grid .content-slab {
  flex: 1 1 260px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #d0d7e2;
}

.background-panel {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 26px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 45, 0.5);
}

.background-panel .panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.text-link {
  color: var(--accent);
  text-decoration: underline;
}

.image-offset {
  position: relative;
  top: 12px;
}

@media (max-width: 860px) {
  .hero-title {
    font-size: 32px;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
