* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0f1216;
  --bg-soft: #171b21;
  --accent: #f4c542;
  --accent-dark: #c89a2e;
  --text: #f5f5f5;
  --muted: #b7bec8;
  --panel: #1f252d;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
  text-align: right;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: stretch;
  background-color: #1c222b;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.9), rgba(15, 18, 22, 0.2)), url("https://images.unsplash.com/photo-1625047509168-a7026f36de04?w=1400&q=80") center/cover no-repeat;
  position: relative;
}

.hero-inner {
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding: 64px 0;
}

.hero-card {
  background: rgba(23, 27, 33, 0.95);
  padding: 36px;
  max-width: 520px;
  border-left: 4px solid var(--accent);
  margin-left: 8%;
}

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #1a1d22;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 72px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  background: var(--panel);
  padding: 28px;
  flex: 1 1 320px;
}

.panel-offset {
  transform: translateY(-24px);
}

.image-frame {
  flex: 1 1 320px;
  background: #2a2f36;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  background: var(--panel);
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.price {
  color: var(--accent);
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.quote-band {
  background: linear-gradient(90deg, #1c222b, #0f1216);
  padding: 42px 0;
}

.quote-band .panel {
  background: transparent;
}

.form-wrap {
  background: var(--bg-soft);
  padding: 32px;
  max-width: 680px;
  margin-left: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  background: #0f1216;
  color: var(--text);
  border: 1px solid #2c323c;
  padding: 12px;
  border-radius: 8px;
}

.inline-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 48px 0;
  background: #0b0e12;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #1a1d22;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 5;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: var(--panel);
  padding: 16px 20px;
  border-radius: 14px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #2a2f36;
  color: var(--muted);
  font-size: 0.85rem;
}

.muted {
  color: var(--muted);
}

.legal-block {
  background: var(--panel);
  padding: 28px;
  margin: 28px 0;
}

.page-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  background: var(--panel);
  padding: 24px;
  flex: 1 1 260px;
}

.image-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-strip .image-frame {
  flex: 1 1 240px;
}

.section-bg {
  background-color: #20252c;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.92), rgba(15, 18, 22, 0.55)), url("https://images.unsplash.com/photo-1596986952526-3be237187071?w=1400&q=80") center/cover no-repeat;
}

.about-hero {
  background-color: #222831;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.9), rgba(15, 18, 22, 0.3)), url("https://images.unsplash.com/photo-1711386689622-1cda23e10217?w=1400&q=80") center/cover no-repeat;
}

.services-hero {
  background-color: #1e242c;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.88), rgba(15, 18, 22, 0.25)), url("https://images.unsplash.com/photo-1625047509252-ab38fb5c7343?w=1400&q=80") center/cover no-repeat;
}

.contact-hero {
  background-color: #21262e;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.9), rgba(15, 18, 22, 0.35)), url("https://images.unsplash.com/photo-1684864115730-96da635ba86e?w=1400&q=80") center/cover no-repeat;
}

.thanks-hero {
  background-color: #1c2228;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.92), rgba(15, 18, 22, 0.28)), url("https://images.unsplash.com/photo-1606577924006-27d39b132ae2?w=1400&q=80") center/cover no-repeat;
}

.legal-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding: 48px 0;
}

.privacy-hero {
  background-color: #1e232a;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.9), rgba(15, 18, 22, 0.4)), url("https://images.unsplash.com/photo-1727893119356-1702fe921cf9?w=1400&q=80") center/cover no-repeat;
}

.gdpr-hero {
  background-color: #1b2027;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.9), rgba(15, 18, 22, 0.4)), url("https://images.unsplash.com/photo-1618312980096-873bd19759a0?w=1400&q=80") center/cover no-repeat;
}

.cookies-hero {
  background-color: #20262e;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.9), rgba(15, 18, 22, 0.35)), url("https://images.unsplash.com/photo-1675034743126-0f250a5fee51?w=1400&q=80") center/cover no-repeat;
}

.terms-hero {
  background-color: #1c2128;
  background: linear-gradient(120deg, rgba(15, 18, 22, 0.92), rgba(15, 18, 22, 0.38)), url("https://images.unsplash.com/photo-1548184274-f1d3776448b3?w=1400&q=80") center/cover no-repeat;
}

.badge-line {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
