*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Roboto", sans-serif;
  color: #1a1f24;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-strip {
  background: #111418;
  color: #f5f2ee;
  padding: 0.45rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.top-strip a {
  color: #f5f2ee;
  border-bottom: 1px solid rgba(245, 242, 238, 0.5);
}

header {
  position: relative;
  padding: 2rem 6vw 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.floating-nav {
  align-self: flex-end;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 14px 30px rgba(12, 14, 18, 0.15);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.floating-nav a {
  font-size: 0.95rem;
  color: #222;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  max-width: 540px;
  color: #42505b;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding: 1rem 6vw 4rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: 0 18px 35px rgba(22, 26, 30, 0.18);
  position: relative;
  z-index: 2;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 120px;
  height: 120px;
  background: #c7d7ff;
  border-radius: 22px;
  z-index: -1;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  align-self: flex-end;
  max-width: 520px;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.highlight {
  background: #111418;
  color: #fdfaf6;
  padding: 1.5rem;
  border-radius: 22px;
  align-self: flex-start;
  max-width: 420px;
}

.offset-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.offset-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(19, 22, 25, 0.15);
  max-width: 420px;
  margin-left: 10vw;
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  align-self: flex-end;
  max-width: 460px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: #e8eef5;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 14px 28px rgba(16, 20, 24, 0.12);
}

.card img {
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 14px 30px rgba(15, 20, 28, 0.16);
  border: 1px solid rgba(10, 15, 20, 0.05);
}

.service-card.is-selected {
  border-color: #1a1f24;
  box-shadow: 0 18px 32px rgba(10, 14, 18, 0.2);
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 600;
}

.service-card button,
.primary-btn {
  background: #1a1f24;
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  align-self: flex-start;
}

.secondary-btn {
  background: #e6ebf2;
  color: #1a1f24;
  border: none;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
}

.inline-cta {
  color: #0c4a8a;
  border-bottom: 1px solid rgba(12, 74, 138, 0.4);
}

.layered-block {
  background: #fdfaf6;
  border-radius: 26px;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(10, 15, 20, 0.06);
  position: relative;
}

.layered-block::before {
  content: "";
  position: absolute;
  inset: auto 40px -30px auto;
  width: 120px;
  height: 120px;
  background: #f2d7c6;
  border-radius: 24px;
  z-index: -1;
}

.visual-panel {
  border-radius: 24px;
  padding: 2rem;
  color: #ffffff;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.bg-one {
  background-image: linear-gradient(rgba(15, 18, 22, 0.55), rgba(15, 18, 22, 0.2)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
}

.bg-two {
  background-image: linear-gradient(rgba(17, 20, 24, 0.6), rgba(17, 20, 24, 0.2)),
    url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?auto=format&fit=crop&w=1200&q=80");
}

.bg-three {
  background-image: linear-gradient(rgba(17, 20, 24, 0.55), rgba(17, 20, 24, 0.2)),
    url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=1200&q=80");
}

.testimonial {
  background: #ffffff;
  padding: 1.3rem;
  border-radius: 18px;
  border-left: 4px solid #1a1f24;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-wrapper {
  background: #ffffff;
  padding: 2rem;
  border-radius: 26px;
  box-shadow: 0 16px 30px rgba(12, 16, 20, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 500;
}

input,
select,
textarea {
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(20, 24, 28, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sticky-cta-wrap {
  position: sticky;
  top: 1.5rem;
  align-self: flex-end;
}

.sticky-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffda8a;
  color: #1a1f24;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
}

footer {
  padding: 2rem 6vw 3rem;
  background: #111418;
  color: #f5f2ee;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer a {
  color: #f5f2ee;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(10, 14, 18, 0.2);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions button {
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: #1a1f24;
  color: #ffffff;
}

.cookie-reject {
  background: #e6ebf2;
  color: #1a1f24;
}

.legal-page main {
  gap: 2.5rem;
}

.legal-card {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: 0 14px 24px rgba(10, 14, 18, 0.12);
}

@media (min-width: 900px) {
  header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .offset-row {
    flex-direction: row;
    align-items: stretch;
  }

  .cards {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 1rem);
  }

  .card {
    flex: 1;
  }

  .form-wrapper {
    flex-direction: row;
    align-items: stretch;
  }

  form {
    flex: 1;
  }
}
