:root {
  --bg: #f6f4f0;
  --ink: #1b1b1f;
  --muted: #4c4c59;
  --accent: #2c5aa0;
  --accent-soft: #e3ebf8;
  --sand: #efe7dd;
  --olive: #9bb0a8;
  --paper: #ffffff;
  --line: #ded7cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  margin: 12px 6vw 40px;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  background-color: #25314a;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(16, 16, 18, 0.75), rgba(16, 16, 18, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin: 0 0 12px;
}

.hero-content p {
  margin: 0 0 24px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid #fff;
}

.section {
  padding: 40px 6vw;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.asym-block {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.text-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  max-width: 520px;
}

.image-wrap {
  background-color: var(--accent-soft);
  border-radius: 24px;
  overflow: hidden;
  flex: 1;
  min-height: 260px;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: 8vw;
  top: -18px;
  background: var(--olive);
  color: #fff;
  padding: 12px 18px;
  border-radius: 16px;
  max-width: 280px;
}

.services-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-inline {
  font-weight: 600;
}

.layered-section {
  background-color: #1d2836;
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  margin: 0 6vw 40px;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.layered-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.65);
}

.layered-section .layered-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.form-wrap {
  background: var(--paper);
  padding: 28px;
  border-radius: 24px;
  max-width: 680px;
}

form {
  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;
  width: 100%;
}

.split-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.split-row > div {
  flex: 1 1 240px;
}

.testimonial {
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 18px;
  max-width: 280px;
}

footer {
  padding: 36px 6vw 90px;
  background: #121417;
  color: #f3f3f3;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.footer-links a {
  color: #f3f3f3;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.is-hidden {
  display: none;
}

.page-hero {
  padding: 36px 6vw;
}

.page-hero h1 {
  margin: 0 0 10px;
}

.service-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-item {
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
  flex: 1 1 220px;
}

.contact-card {
  background: var(--paper);
  padding: 22px;
  border-radius: 18px;
  max-width: 520px;
}

@media (max-width: 860px) {
  .asym-block,
  .asym-block.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 24px;
    right: auto;
  }
}
