@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --bg: #0f1b1a;
  --bg-soft: #162624;
  --bg-contrast: #f2f5f3;
  --text: #e9f2ed;
  --text-dark: #1f2b27;
  --accent: #3bb273;
  --accent-dark: #2a8a58;
  --muted: #b7c9c1;
  --warm: #e3efe8;
  --card: #1c2f2a;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  padding: 24px 6vw 0;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1 1 240px;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw 40px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-copy p {
  margin-bottom: 22px;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: var(--accent);
  color: #0c1916;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--accent);
}

.image-frame {
  flex: 1 1 320px;
  background: #1d312c;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 60px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-copy {
  flex: 1 1 320px;
}

.split-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.split-copy p {
  color: var(--muted);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 240px;
  min-width: 240px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.bg-flow {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay {
  background: rgba(15, 27, 26, 0.8);
}

.form-wrap {
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  flex: 1 1 320px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0f1f1b;
  color: var(--text);
  font-family: inherit;
}

button {
  cursor: pointer;
}

.cta-block {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(59, 178, 115, 0.18);
  border: 1px solid rgba(59, 178, 115, 0.4);
}

.footer {
  padding: 40px 6vw;
  background: #0b1412;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 20px;
}

.footer small {
  display: block;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 20px;
  background: var(--accent);
  color: #0c1916;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #12201d;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px;
  display: none;
  gap: 12px;
  align-items: center;
  max-width: 880px;
  width: calc(100% - 48px);
  z-index: 20;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.page-hero {
  padding: 60px 6vw 40px;
  background: var(--bg-soft);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.list-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #142420;
  border: 1px solid var(--border);
}

.service-row strong {
  min-width: 180px;
}

.notice {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .sticky-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
