* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background: #f6f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #15171c;
  color: #f5f2ec;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #2a2f38;
  padding: 10px 12px;
  border-radius: 10px;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.side-nav a {
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #e8b572;
  color: #1b1b1b;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #2a2f38;
  color: #f6f4f0;
}

.btn.small {
  padding: 10px 14px;
  font-size: 13px;
}

.link {
  font-weight: 600;
  text-decoration: underline;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.section.compact {
  padding-top: 32px;
  padding-bottom: 32px;
}

.hero {
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1c222c;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 20, 26, 0.6);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split-block .text {
  flex: 1;
  min-width: 260px;
}

.split-block .image-frame {
  flex: 1;
  min-width: 240px;
  background: #d8d3c8;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(17, 20, 26, 0.08);
}

.card img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  background: #e0ddd6;
}

.price {
  font-size: 18px;
  font-weight: 700;
}

.bg-insights {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1a1f2a;
  color: #ffffff;
  position: relative;
}

.bg-insights::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 24, 0.6);
}

.bg-insights .overlay {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.form-panel {
  display: none;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(16, 18, 26, 0.08);
}

.form-panel.visible {
  display: block;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d9d4cc;
  font-size: 15px;
  font-family: inherit;
}

.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-button {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid #1d1f24;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.testimonial .image-frame {
  max-width: 320px;
  background: #dcd4c7;
}

.footer {
  padding: 32px 7vw;
  background: #15171c;
  color: #f5f2ec;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.floating-cta .btn {
  box-shadow: 0 12px 30px rgba(12, 14, 20, 0.3);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(12, 14, 20, 0.2);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-hero {
  background: #ffffff;
  padding: 48px 7vw 24px;
}

.page-image {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f1ede6;
}

.page-image img {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  object-fit: cover;
  background: #e1dbd1;
}

.legal-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-note {
  background: #f1ede6;
  padding: 14px;
  border-radius: 12px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-grid .legal-card {
  flex: 1;
  min-width: 240px;
}

.accent-bg {
  background: #f0ebe2;
}
