@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #1c1f24;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0f4c5c;
  text-decoration: none;
}

main {
  position: relative;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #f6f3ef;
  border-bottom: 1px solid #e3ddd3;
}

.nav-split {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: #0f4c5c;
}

.split-section {
  padding: 4rem 0;
  background: #f6f3ef;
}

.split-section.alt {
  background: #fff8f1;
}

.split-section.deep {
  background: #1f2b2f;
  color: #f7f3ed;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.split-content,
.split-media {
  flex: 1;
}

.split-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #6e6b63;
}

.deep .tag {
  color: #d6d2c8;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lead {
  font-size: 1.1rem;
  max-width: 32rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.primary {
  background: #0f4c5c;
  color: #fff;
}

.btn.secondary {
  border-color: #0f4c5c;
  color: #0f4c5c;
  background: transparent;
}

.btn.light {
  background: #f7f3ed;
  color: #1f2b2f;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card img {
  width: 64px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f4c5c;
}

.service-card .btn {
  align-self: flex-start;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.list-block li {
  padding-left: 1.2rem;
  position: relative;
}

.list-block li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0f4c5c;
}

.form-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid #d2ccc1;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.85rem;
  color: #6e6b63;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  margin: 0 auto;
  width: min(320px, 90%);
  background: #0f4c5c;
  color: #fff;
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.site-footer {
  padding: 2.5rem 0;
  background: #1f2b2f;
  color: #e7e2d8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #e7e2d8;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  padding: 1.2rem;
  max-width: 300px;
  display: none;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.policy-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.policy-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-weight: 500;
}

.contact-list span {
  color: #6e6b63;
  font-weight: 400;
}

.thanks-panel {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

@media (min-width: 900px) {
  .nav-split {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .policy-columns {
    flex-direction: row;
  }

  .policy-card {
    flex: 1;
  }
}
