:root {
  --ink: #1d1f2a;
  --muted: #5e647a;
  --sand: #f6f2ea;
  --stone: #e8e1d5;
  --accent: #2563eb;
  --accent-dark: #1e40af;
  --shadow: 0 18px 40px rgba(25, 25, 25, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fcfbf8;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #111827;
  color: #f9fafb;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.nav a {
  color: #f9fafb;
}

.sidebar .sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar .meta {
  font-size: 0.85rem;
  color: rgba(249, 250, 251, 0.7);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(37, 99, 235, 0.4);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-2px);
}

.content {
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: #0f172a;
  color: #f8fafc;
}

.section .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.65)),
    url("https://images.unsplash.com/photo-1502005097973-6a7082348e28?auto=format&fit=crop&w=1600&q=80");
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-link {
  color: inherit;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.split img {
  width: 100%;
  border-radius: 16px;
  height: 240px;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-dark);
  font-weight: 600;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7dbe8;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-card textarea {
  min-height: 120px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-item .price {
  font-weight: 700;
}

.strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff5e6;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 159, 67, 0.25);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
}

.footer {
  padding: 32px 22px 64px;
  background: #0f172a;
  color: #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e2e8f0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111827;
  color: #f8fafc;
  padding: 18px 22px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  box-shadow: none;
}

.hero .badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 280px;
    min-height: 100vh;
  }

  .content {
    flex: 1;
  }

  .section {
    padding: 70px 60px;
  }

  .hero .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-copy {
    flex: 1.1;
  }

  .hero .hero-details {
    flex: 0.9;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    width: calc(50% - 12px);
  }
}
