* {
  box-sizing: border-box;
}

:root {
  --ink: #111418;
  --muted: #5b6775;
  --surface: #f6f7f9;
  --surface-2: #eef1f4;
  --accent: #1d6b4f;
  --accent-2: #0f3d2e;
  --line: #d8dde3;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 6vw 60px;
  gap: 30px;
  align-items: stretch;
}

.hero-content,
.hero-media {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #ced7de;
  border-radius: 18px;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 18px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background-color: #ced7de;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 60px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
  background-color: #d3dde5;
  border-radius: 16px;
}

.split-media img {
  width: 100%;
  border-radius: 16px;
  background-color: #d3dde5;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--accent-2);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.services {
  padding: 60px 6vw;
  background: var(--surface);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.service-card img {
  border-radius: 12px;
  width: 100%;
  height: 160px;
  background-color: #cfd8df;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-2);
  border: 1px solid var(--accent-2);
}

.inline-link {
  text-decoration: underline;
  color: var(--accent-2);
}

.form-section {
  padding: 60px 6vw;
}

form {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial-strip {
  padding: 50px 6vw;
  background: #0f151a;
  color: #f1f4f7;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.testimonial {
  flex: 1 1 260px;
  min-width: 240px;
}

.image-band {
  position: relative;
  padding: 70px 6vw;
  overflow: hidden;
  background: #0b1b16;
  color: #e9f2ed;
}

.image-band img.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: #0b1b16;
}

.image-band .content {
  position: relative;
  max-width: 760px;
}

.footer {
  padding: 40px 6vw;
  border-top: 1px solid var(--line);
  background: #f9fafb;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.page-hero {
  padding: 50px 6vw 20px;
}

.page-hero h1 {
  margin: 0 0 10px 0;
}

.content-section {
  padding: 30px 6vw 50px;
}

.content-section p {
  max-width: 860px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  min-width: 240px;
  background: var(--surface);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .sticky-cta {
    position: static;
    margin: 20px 6vw 0;
  }
  .cookie-banner {
    left: 6vw;
    right: 6vw;
    bottom: 12px;
  }
}
