* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1e1e1e;
  --muted: #5b5b5b;
  --accent: #2b5d7c;
  --accent-dark: #214760;
  --paper: #ffffff;
  --sand: #efe8df;
  --slate: #e3e6ea;
  --shadow: rgba(27, 27, 27, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--slate);
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  padding: 8px 10px;
  border: 1px dashed var(--slate);
  background: var(--sand);
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--bg);
}

.nav a:hover {
  background: var(--slate);
}

.sidebar-cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--accent-dark);
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.split {
  flex-direction: row;
  align-items: center;
  gap: 36px;
}

.section.alt {
  background: var(--paper);
}

.section.muted {
  background: var(--sand);
}

.section.narrow {
  max-width: 960px;
}

.section h1,
.section h2,
.section h3 {
  letter-spacing: -0.02em;
}

.hero {
  color: #fff;
  background: linear-gradient(90deg, rgba(26, 40, 54, 0.92), rgba(26, 40, 54, 0.6)),
    url("https://images.unsplash.com/photo-1501183638710-841dd1904471?w=1400&q=80")
      center/cover no-repeat;
  min-height: 420px;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #fff;
  color: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.media {
  background: var(--slate);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 30px var(--shadow);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px var(--shadow);
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-dark);
}

.service-card button {
  align-self: flex-start;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  flex: 1 1 180px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.sticky-cta a {
  background: #fff;
  color: var(--accent-dark);
  padding: 8px 12px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.form-wrap {
  background: var(--paper);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--slate);
  font-size: 15px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.inline-links a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer {
  background: #1c1c1c;
  color: #f4f4f4;
  padding: 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f4f4f4;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 14px 28px var(--shadow);
  padding: 16px;
  width: 300px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.two-col > div {
  flex: 1 1 300px;
}

.contact-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-tile {
  background: #dde1e6;
  border-radius: 18px;
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bg-soft-1 {
  background: #dfe5eb;
}

.bg-soft-2 {
  background: #e6dfd4;
}

.bg-soft-3 {
  background: #e1e7ec;
}

.bg-soft-4 {
  background: #e3e0d8;
}

.bg-soft-5 {
  background: #e4e8ea;
}

.quote {
  font-style: italic;
  background: var(--slate);
  padding: 16px;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .site-shell {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--slate);
  }

  .section {
    padding: 36px 24px;
  }

  .section.split {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
