* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f1f1f;
  --muted: #5b5b5b;
  --accent: #1a5b8e;
  --accent-soft: #e6f0f8;
  --sand: #f6f1ea;
  --midnight: #0f1a24;
  --card: #ffffff;
  --shadow: 0 18px 40px rgba(15, 26, 36, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid #d2d7dc;
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  background: linear-gradient(120deg, rgba(15, 26, 36, 0.85), rgba(15, 26, 36, 0.35)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80") center/cover no-repeat;
  color: #fff;
  padding: 120px 0 90px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(26, 91, 142, 0.2);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background: var(--sand);
}

.offset-grid {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-grid.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 30px;
  border-radius: 24px;
  flex: 1 1 320px;
}

.offset-card h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.offset-card p {
  color: var(--muted);
}

.image-frame {
  background-color: #dbe2ea;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1 1 320px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stacked-cards .card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 26px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.stacked-cards .card img {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
  background-color: #dbe2ea;
}

.cards-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
  background-color: #dbe2ea;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.bg-context {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.75)),
    url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80") center/cover no-repeat;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8dee5;
  font-size: 1rem;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--midnight);
  color: #fff;
  padding: 18px 24px;
  border-radius: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.sticky-cta button {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  background: var(--midnight);
  color: #fff;
  padding: 50px 0 80px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.legal {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #c9d2db;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.simple-hero {
  background: var(--accent-soft);
  padding: 70px 0 40px;
}

.simple-hero h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.info-grid {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.info-panel {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.references {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 800px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}
