* {
  box-sizing: border-box;
}

:root {
  --bg: #0f1512;
  --surface: #16211b;
  --surface-light: #1f2d24;
  --accent: #67c18a;
  --accent-dark: #3e8d64;
  --text: #f4f7f5;
  --muted: #c9d6ce;
  --stroke: #2a3a30;
  --warm: #f2efe9;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--warm);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 16px;
  background: rgba(15, 21, 18, 0.9);
  border-bottom: 1px solid var(--stroke);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--stroke);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
  padding: 60px 6vw 40px;
  position: relative;
}

.hero-text {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-media {
  flex: 1 1 380px;
  position: relative;
  min-height: 380px;
  background-color: #223125;
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(30px);
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  max-width: 260px;
}

.section {
  padding: 50px 6vw;
}

.section.surface {
  background: var(--surface);
}

.section.light {
  background: var(--surface-light);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 280px;
  max-width: 520px;
}

.split-media {
  flex: 1 1 280px;
  background-color: #243429;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #111a15;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background-color: #1f2b24;
  min-height: 160px;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--warm);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  background: var(--accent);
  color: #08140d;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--stroke);
}

.button:focus,
.button:hover {
  background: var(--warm);
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--accent-dark);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.floating-cta:hover,
.floating-cta:focus {
  background: var(--accent);
  color: #08140d;
}

.form-wrap {
  background: #101813;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: #0b120e;
  color: var(--text);
}

.inline-quote {
  background: var(--surface-light);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  margin: 0;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  background: #0c120e;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  color: var(--muted);
  max-width: 520px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: 18px;
  border-radius: 16px;
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-header {
  padding: 60px 6vw 20px;
}

.info-block {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offset-panel {
  margin-top: -40px;
}

.legal-content {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-content h2 {
  margin-bottom: 6px;
}

.note {
  color: var(--muted);
}
