* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d1f26;
  --muted: #5c6573;
  --accent: #2a6f8f;
  --accent-soft: #e6f1f6;
  --highlight: #f6efe8;
  --surface: #ffffff;
  --shadow: rgba(29, 31, 38, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--surface);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid #e2e2e2;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: #6a5b49;
  background: var(--highlight);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  padding: 8px 10px;
  border-radius: 10px;
  background: #f3f3f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.nav-meta {
  font-size: 11px;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section-tone {
  background: var(--surface);
}

.section-soft {
  background: var(--accent-soft);
}

.section-highlight {
  background: var(--highlight);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1;
  background: #dfe7ec;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f1f1f1;
  font-size: 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.insight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.insight-card {
  flex: 1 1 220px;
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-media {
  background: #e2e8ed;
  border-radius: 14px;
  overflow: hidden;
  height: 140px;
}

.insight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split-panel {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px var(--shadow);
}

.service-image {
  background: #e7edf1;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: #ffffff;
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrap {
  background: var(--surface);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 32px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-size: 14px;
  color: var(--muted);
}

.form-grid select,
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d3d7dd;
  font-size: 14px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.submit-btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
}

.note-link {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  padding: 36px 64px;
  background: #13171d;
  color: #d8dde6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #d8dde6;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px var(--shadow);
  display: none;
  gap: 14px;
  align-items: center;
  max-width: 860px;
  width: calc(100% - 32px);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #ececec;
  color: var(--ink);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-box {
  background: #dfe6ea;
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  list-style: none;
  padding: 10px 12px;
  background: #ffffff;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
  }

  .section,
  .footer {
    padding: 40px 24px;
  }

  .hero {
    flex-direction: column;
  }
}
