* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.brand span {
  background: #1a1a1a;
  color: #fff;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.9rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #ff5a3d;
  color: #fff;
  font-weight: 600;
}

.hero {
  padding: 16px 6% 48px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 44px 6%;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  max-width: 520px;
}

.split .text h1,
.split .text h2,
.split .text h3 {
  line-height: 1.2;
  margin-bottom: 16px;
}

.split .text p {
  margin-bottom: 14px;
}

.split .panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.muted {
  color: #5b5b5b;
  font-size: 0.95rem;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #ff5a3d;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background: #ff5a3d;
}

.btn.light {
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #d7d3cc;
}

.inline-link {
  color: #ff5a3d;
  font-weight: 600;
}

.accent {
  background: #efe6db;
}

.dark {
  background: #1a1a1a;
  color: #f9f6f1;
}

.dark .btn.light {
  color: #1a1a1a;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff5a3d;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5a3d;
  margin-top: 7px;
}

.form-box {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.85rem;
  color: #5b5b5b;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d3cc;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #ff5a3d;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

footer {
  padding: 32px 6% 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 32px 6%;
}

.page-hero h1 {
  font-size: 2.2rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 6% 60px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 6% 60px;
}

@media (min-width: 900px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    justify-content: space-between;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split .panel,
  .split .text {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-grid .card {
    flex: 1 1 280px;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid .panel {
    flex: 1;
  }
}
