* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2a2f;
  background: #f7f8fa;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #1f4c6d;
  text-decoration: none;
}

a:hover {
  color: #14384f;
}

header {
  padding: 1.5rem 6vw 1rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #f0d9ff;
  color: #4b2163;
}

main {
  padding-bottom: 4rem;
}

.section {
  padding: 3.5rem 6vw;
}

.section.tight {
  padding: 2.5rem 6vw;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #19262d;
  color: #f5f7f8;
}

.section-bg {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.bg-vision {
  background-color: #1d2c33;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
}

.bg-about-hero {
  background-color: #202a30;
  background-image: url("https://images.unsplash.com/photo-1478358161113-b0e11994a36b?w=1400&q=80");
}

.bg-services-hero {
  background-color: #1b2328;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 22, 26, 0.45);
}

.section-bg .section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 720px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding: 2.5rem 6vw 4rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #e6eef3;
  font-size: 0.9rem;
  color: #2a4b5d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #1f4c6d;
  background: #1f4c6d;
  color: #fff;
  font-weight: 600;
  gap: 0.4rem;
}

.btn.secondary {
  background: transparent;
  color: #1f4c6d;
}

.btn:hover {
  background: #14384f;
  color: #fff;
}

.image-frame {
  background: #d9e4ea;
  border-radius: 24px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  align-items: stretch;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(19, 34, 44, 0.08);
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-info {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #14405c;
}

.tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  background: #eff4f7;
  font-size: 0.85rem;
  color: #285068;
}

.form-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(22, 36, 46, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #c9d6de;
  font-size: 0.95rem;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #90b4cc;
  border-color: #90b4cc;
}

.sticky-card {
  background: #fff3d6;
  padding: 1.5rem;
  border-radius: 20px;
  position: sticky;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid #f0d6a7;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.columns > div {
  flex: 1 1 220px;
}

footer {
  padding: 2.5rem 6vw 3rem;
  background: #0f1a20;
  color: #e6edf1;
}

footer a {
  color: #c3d6e1;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #b4c5cf;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(12, 20, 25, 0.2);
  max-width: 320px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
}
