* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #121417;
  background-color: #f7f7f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  background: #f0f1ee;
  border-bottom: 1px solid #d8dad4;
}

.nav-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.main-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e3e4df;
}

.ad-label {
  font-size: 12px;
  color: #4e545a;
  padding: 6px 10px;
  border-radius: 12px;
  background: #e7ebe2;
  border: 1px solid #c8d0c2;
}

.hero {
  background-color: #dde2da;
  background-size: cover;
  background-position: center;
  padding: 96px 20px 70px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 16, 18, 0.6), rgba(14, 16, 18, 0.15));
}

.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  color: #f7f7f5;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.hero-text {
  flex: 1 1 360px;
}

.hero-text h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 18px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: #f8d45b;
  color: #151515;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6b74f;
}

.btn-outline {
  background: transparent;
  color: #f7f7f5;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.section {
  padding: 70px 20px;
}

.section.light {
  background: #fdfcf9;
}

.section.dark {
  background: #1a1f22;
  color: #f7f7f5;
}

.section .section-title {
  max-width: 1100px;
  margin: 0 auto 40px;
  font-size: 28px;
}

.split {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 360px;
}

.panel p {
  margin-top: 0;
}

.img-wrap {
  background-color: #d9ded6;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}

.img-tall {
  min-height: 320px;
}

.img-card {
  min-height: 160px;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e2e2df;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #1f3a2d;
}

.inline-cta {
  text-decoration: underline;
}

.form-wrap {
  background: #f1efe7;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #d9d2c4;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c9c9;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  background: #121417;
  color: #f7f7f5;
  padding: 40px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer a {
  color: #f8d45b;
}

.footer small {
  color: #c7cdd0;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f3a2d;
  color: #f7f7f5;
  padding: 12px 16px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta a {
  background: #f8d45b;
  color: #151515;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  border: 1px solid #dadada;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #1f3a2d;
  color: #ffffff;
}

.cookie-reject {
  background: #e8e8e8;
  color: #1a1a1a;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.page-hero {
  padding: 60px 20px 40px;
}

.page-hero .hero-content {
  color: #121417;
}

.page-hero::after {
  display: none;
}

.hero-index {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.hero-thanks {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.bg-process {
  background-color: #dfe4dd;
  background-image: url("https://images.unsplash.com/photo-1456324504439-367cee3b3c32?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-structure {
  background-color: #e7ece5;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-privacy {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.hero-gdpr {
  background-image: url("https://images.unsplash.com/photo-1473187983305-f615310e7daa?w=1400&q=80");
}

.hero-cookies {
  background-image: url("https://images.unsplash.com/photo-1508780709619-79562169bc64?w=1400&q=80");
}

.hero-terms {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.bg-privacy {
  background-color: #e3e8e2;
  background-image: url("https://images.unsplash.com/photo-1497215728101-856f4ea42174?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-cookies {
  background-color: #e8e4df;
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-gdpr {
  background-color: #e5e7ea;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-terms {
  background-color: #e7e2dd;
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.legal-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-columns div {
  flex: 1 1 260px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.88);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e2e2df;
}

@media (max-width: 880px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
