* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #1b1a1f;
  background: #f7f6f2;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f7f6f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.sidebar {
  background: #111015;
  color: #f7f6f2;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  font-size: 0.95rem;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 20px 96px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.05rem;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: #1e5bff;
  color: #fff;
}

.btn-outline {
  border-color: #1e5bff;
  color: #1e5bff;
  background: transparent;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8e6dd;
  font-size: 0.85rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.split .text {
  max-width: 56ch;
}

.frame {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(11, 10, 20, 0.08);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 24px rgba(11, 10, 20, 0.06);
}

.card img {
  border-radius: 14px;
}

.highlight {
  background: #151a2d;
  color: #f7f6f2;
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 3px solid #1e5bff;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e5bff;
}

.service-form {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(11, 10, 20, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d2c7;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 20px 24px auto;
  align-self: flex-end;
  background: #fef1d3;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(11, 10, 20, 0.12);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: #111015;
  color: #f7f6f2;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 8px 10px;
  cursor: pointer;
}

.cookie-accept {
  background: #1e5bff;
  color: #fff;
}

.cookie-reject {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.wide-image {
  border-radius: 26px;
  overflow: hidden;
}

.callout {
  background: #f1efe6;
  border-left: 4px solid #1e5bff;
  padding: 18px;
  border-radius: 12px;
}

.contact-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notice {
  font-size: 0.9rem;
  color: #6a6570;
}

@media (min-width: 900px) {
  body {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
    position: sticky;
    top: 0;
  }

  .content {
    padding: 48px 56px 96px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    gap: 36px;
  }

  .hero-text {
    flex: 1;
  }

  .hero-visual {
    flex: 0 0 40%;
  }

  .split {
    flex-direction: row;
    justify-content: space-between;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split .text,
  .split .visual {
    flex: 1;
  }

  .cards,
  .service-grid,
  .metrics {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service,
  .metric {
    flex: 1 1 calc(33% - 18px);
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-item {
    flex: 1;
    border-left: none;
    border-top: 3px solid #1e5bff;
    padding-left: 0;
    padding-top: 16px;
  }

  .contact-panel {
    flex-direction: row;
    justify-content: space-between;
  }
}
