@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #0f1512;
  --bg-soft: #171f1a;
  --bg-contrast: #1e2a22;
  --text: #eef3ef;
  --muted: #b9c6bd;
  --accent: #8fe3c5;
  --accent-2: #f2c879;
  --card: #151c18;
  --border: #2c3a31;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 8px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 48px 0 80px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-visual {
  flex: 1 1 320px;
  min-height: 320px;
  background: var(--bg-contrast);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.split-visual .image-frame {
  width: 100%;
  height: 100%;
}

.hero-panel {
  background-image: url("https://images.unsplash.com/photo-1741646557129-eeb404155d65?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section.tight {
  padding: 48px 0;
}

.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: #0b120f;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .image-frame {
  background: #1f2a23;
  border-radius: 12px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 170px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.inline-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.inline-list span {
  background: var(--bg-contrast);
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.process-steps {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.process-steps div {
  flex: 1 1 180px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.background-band {
  background-image: url("https://images.unsplash.com/photo-1764936509512-1a5d172391a5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.background-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 21, 18, 0.7);
}

.background-band .container {
  position: relative;
  z-index: 1;
}

.form-section {
  background: var(--bg-contrast);
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--border);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #101612;
  color: var(--text);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 40px 0 80px;
  border-top: 1px solid var(--border);
}

.footer-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 200px;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 20px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta .btn {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #101612;
  border-top: 1px solid var(--border);
  padding: 16px 0;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.image-frame {
  background-color: #1c2620;
}

.inline-image {
  border-radius: 16px;
  overflow: hidden;
  background-color: #1c2620;
}

.inline-image img {
  width: 100%;
  height: 260px;
}

.two-column {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 280px;
}

.notice {
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 12px;
  background: #141b16;
}
