* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2a32;
  background: #f7f8fa;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1b5b75;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e4e7eb;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  border: 1px solid #f0c987;
  background: #fff7e6;
  color: #8a5b10;
  font-size: 0.82rem;
  border-radius: 999px;
}

.split-section {
  display: flex;
  gap: 40px;
  padding: 70px 6vw;
  align-items: center;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.section-light {
  background: #ffffff;
}

.section-soft {
  background: #edf2f6;
}

.section-dark {
  background: #17252f;
  color: #f1f5f7;
}

.section-dark a {
  color: #9dd7ff;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #68808d;
}

.section-dark .eyebrow {
  color: #b5cad6;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.3rem);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #1b5b75;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover,
.btn:focus {
  background: #15485d;
}

.btn-outline {
  background: transparent;
  border-color: #1b5b75;
  color: #1b5b75;
}

.btn-outline:hover,
.btn-outline:focus {
  background: #e6f2f7;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(30, 42, 50, 0.08);
  flex-wrap: wrap;
}

.card img {
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: #1b5b75;
}

.image-frame {
  background: #dfe7ee;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  padding: 8px 12px;
  background: #eaf0f4;
  border-radius: 999px;
  font-size: 0.88rem;
}

.section-dark .badge {
  background: rgba(255, 255, 255, 0.12);
}

.quote {
  font-style: italic;
  border-left: 3px solid #1b5b75;
  padding-left: 14px;
}

.form-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(30, 42, 50, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6dc;
  font-size: 1rem;
  width: 100%;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  background: #101820;
  color: #d0d7dd;
  padding: 40px 6vw;
}

.footer a {
  color: #d0d7dd;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.85;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 20;
  box-shadow: 0 10px 20px rgba(30, 42, 50, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d5dbe0;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 10px 20px rgba(30, 42, 50, 0.15);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.hero-image {
  min-height: 360px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-lab {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-form {
  background-image: url("https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.image-small {
  width: 180px;
  height: 140px;
}

.image-medium {
  width: 260px;
  height: 180px;
}

.image-large {
  width: 100%;
  height: 320px;
}

.contact-block {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(30, 42, 50, 0.08);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(30, 42, 50, 0.08);
  flex-wrap: wrap;
}

.service-item .details {
  flex: 1 1 200px;
}

.service-item img {
  border-radius: 12px;
}

.note {
  font-size: 0.92rem;
  color: #495b66;
}

.hidden {
  display: none;
}
