* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1e28;
  --muted: #5b6472;
  --accent: #b4432c;
  --accent-dark: #7f2e20;
  --soft: #f2f3f5;
  --paper: #ffffff;
  --sand: #f7f0ea;
  --sea: #eef4f7;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid #e4e6eb;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-list a {
  display: inline-block;
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 64px;
}

.section-tight {
  padding: 40px 64px;
}

.hero {
  background: var(--sand);
}

.hero-wrap {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 260px;
}

.hero-media {
  flex: 1;
  min-width: 260px;
  background-color: #d9d2cb;
  border-radius: 22px;
  overflow: hidden;
}

.hero-media img,
.media-card img,
.inline-photo img,
.service-card img,
.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 20px;
}

.inline-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.band {
  background: var(--sea);
}

.bg-finance {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-finance .panel,
.bg-finance .note {
  color: #f2f2f2;
}

.bg-finance .panel {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.band-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.band-visual {
  flex: 1;
  min-width: 230px;
  background-color: #c8d6de;
  border-radius: 18px;
  overflow: hidden;
}

.band-copy {
  flex: 1.2;
  min-width: 260px;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.stat {
  background: var(--paper);
  border-radius: 16px;
  padding: 14px 16px;
  min-width: 150px;
  flex: 1;
}

.stat h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.layered {
  background: var(--paper);
  margin: -24px 64px 0;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(27, 30, 40, 0.08);
  padding: 32px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.layered .column {
  flex: 1;
  min-width: 240px;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background-color: #d8dfe6;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card .card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background: var(--sand);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  border-radius: 18px;
  padding: 24px;
}

.inline-photo {
  flex: 1;
  min-width: 220px;
  background-color: #d9d2cb;
  border-radius: 16px;
  overflow: hidden;
}

.quote {
  font-style: italic;
  color: var(--muted);
}

.form-wrap {
  background: var(--paper);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-info {
  flex: 1;
  min-width: 240px;
}

.service-form {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d9df;
  font-size: 15px;
}

.footer {
  background: var(--paper);
  padding: 28px 64px;
  border-top: 1px solid #e4e6eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  padding: 12px 18px;
  border-radius: 30px;
  border: none;
  background: var(--accent-dark);
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--paper);
  border: 1px solid #e4e6eb;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.panel {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
  flex: 1;
  min-width: 240px;
}

.contact-visual {
  flex: 1;
  min-width: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #ccd4dc;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-line strong {
  color: var(--accent-dark);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-section h2 {
  font-size: 20px;
}

.legal-section p {
  color: var(--muted);
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }

  .sidebar-cta {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section,
  .section-tight,
  .footer {
    padding: 40px 24px;
  }

  .layered {
    margin: -18px 24px 0;
  }
}
