* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background-color: #11131a;
  color: #f2f1ee;
  padding: 12px 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  opacity: 0.85;
}

.hero {
  color: #f6f4f1;
  padding: 120px 0 80px;
  background-image: url("https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?w=1400&q=80");
  background-color: #1b1f2a;
  background-size: cover;
  background-position: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  max-width: 620px;
  background-color: rgba(17, 19, 26, 0.72);
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background-color: #ffb857;
  color: #1d1d1f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.secondary {
  background-color: #f2f1ee;
  color: #1d1d1f;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background-color: #ede9e2;
}

.section-dark {
  background-color: #11131a;
  color: #f6f4f1;
}

.section-dark .button.secondary {
  background-color: #f6f4f1;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #d7d2c9;
  border-radius: 16px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(12, 12, 12, 0.08);
}

.card.dark {
  background-color: #1b1f2a;
  color: #f6f4f1;
}

.cta-inline {
  font-weight: 600;
  text-decoration: underline;
}

.quote {
  background-color: #fff;
  border-left: 4px solid #ffb857;
  padding: 18px 20px;
  border-radius: 12px;
  margin: 0;
}

.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pricing-item {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(8, 8, 8, 0.1);
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(8, 8, 8, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c5bd;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta a {
  background-color: #11131a;
  color: #f6f4f1;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer {
  background-color: #0d0f14;
  color: #f6f4f1;
  padding: 40px 0;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #1d1d1f;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  z-index: 20;
  display: none;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.legal-hero {
  background-color: #1d1f2a;
  color: #f6f4f1;
  padding: 70px 0 50px;
}

.legal-hero .split {
  align-items: flex-start;
}

.plain-section {
  padding: 50px 0;
}

.notice {
  background-color: #f0ece5;
  padding: 16px;
  border-radius: 12px;
}

.hero-compact {
  padding: 80px 0 60px;
  color: #f6f4f1;
}

.hero-compact .hero-card {
  background-color: rgba(15, 18, 25, 0.78);
}

.section-background {
  background-image: url("https://images.unsplash.com/photo-1607112812619-182cb1c7bb61?w=1400&q=80");
  background-color: #1b1f2a;
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.section-background .container {
  background-color: rgba(17, 19, 26, 0.76);
  padding: 30px;
  border-radius: 18px;
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1574717024239-25253f4ef40a?w=1400&q=80");
  background-color: #1b1f2a;
  background-size: cover;
  background-position: center;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1492619375914-88005aa9e8fb?w=1400&q=80");
  background-color: #1b1f2a;
  background-size: cover;
  background-position: center;
}

.contact-highlight {
  background-color: #fff7e9;
  border-radius: 16px;
  padding: 20px;
}

@media (max-width: 760px) {
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
