* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2933;
  --muted: #5f6c72;
  --accent: #1a8f7a;
  --accent-dark: #116a5b;
  --sand: #f7f3ee;
  --fog: #eef1f3;
  --stone: #dfe3e6;
  --night: #111827;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 30px;
  align-items: stretch;
}

.hero-content {
  flex: 1 1 340px;
  padding: 30px 32px;
  background: var(--sand);
  border-radius: 28px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 360px;
  border-radius: 28px;
  background: #dfe6ea;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-media.cleaning-hero {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.2), transparent);
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.asym {
  gap: 30px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 300px;
  padding: 14px;
  background: var(--fog);
  border-radius: 22px;
}

.media img {
  width: 100%;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media {
  background: #f0f4f6;
  border-radius: 16px;
  padding: 10px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background: var(--night);
  color: #ffffff;
  border-radius: 26px;
  padding: 28px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.65);
  border-radius: 26px;
}

.bg-story .stack {
  position: relative;
  z-index: 1;
}

.highlight a {
  color: #ffffff;
  text-decoration: underline;
}

.form-wrap {
  background: var(--sand);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  font-size: 1rem;
}

.inline-cta {
  color: var(--accent-dark);
  text-decoration: underline;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

.testimonial {
  font-style: italic;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 50px;
  background: var(--fog);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--stone);
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stone);
  background: #ffffff;
  font-weight: 600;
}

.cookie-actions button:hover {
  border-color: var(--accent);
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.panel {
  background: #ffffff;
  border: 1px solid var(--stone);
  border-radius: 22px;
  padding: 24px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip .media {
  flex: 1 1 180px;
  background: var(--fog);
  border-radius: 18px;
  padding: 10px;
}

@media (max-width: 800px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
