* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 22px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e6e1d8;
}

.nav-link:hover,
.btn:hover,
.link-cta:hover,
.floating-cta:hover,
.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: stretch;
  background-color: #0f1b2b;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.75;
}

.hero-content {
  position: relative;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
}

.hero-tag {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
  max-width: 480px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background: #f1c40f;
  color: #1b1b1b;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.secondary {
  background: #fff;
}

.link-cta {
  color: #1b1b1b;
  font-weight: 600;
  border-bottom: 2px solid #1b1b1b;
  padding-bottom: 2px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fff;
}

.section.insight-bg {
  background-color: #182235;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.section.insight-bg .offset-box {
  background: rgba(255, 255, 255, 0.95);
  color: #1b1b1b;
}

.section h2 {
  font-size: 2rem;
  margin: 0 0 16px 0;
}

.section p {
  margin: 0 0 12px 0;
}

.asym-split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
}

.asym-split.reverse {
  flex-direction: row-reverse;
}

.asym-split .col {
  flex: 1 1 320px;
}

.offset-box {
  background: #f9efe0;
  padding: 28px;
  border-radius: 18px;
  margin-top: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.offset-box.shift {
  margin-left: 18px;
}

.img-frame {
  background-color: #cfd6e4;
  border-radius: 20px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 240px;
  padding: 18px;
  background: #1b1b1b;
  color: #fff;
  border-radius: 16px;
}

.form-shell {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d9d3c9;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.2s ease;
  z-index: 20;
}

.footer {
  background: #101010;
  color: #fff;
  padding: 40px 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer a {
  color: #fff;
}

.legal-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #d9d3c9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #1b1b1b;
  color: #fff;
  transition: 0.2s ease;
}

.cookie-btn.secondary {
  background: #d9d3c9;
  color: #1b1b1b;
}

.page-hero {
  background-color: #1b1b1b;
  color: #fff;
  padding: 48px 0;
}

.page-hero .page {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero .img-frame {
  flex: 1 1 280px;
  min-height: 220px;
}

.page-hero .content {
  flex: 1 1 320px;
}

.muted {
  color: #6e6e6e;
}
