* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f9fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 12px;
  color: #52606d;
  max-width: 240px;
}

.hero {
  position: relative;
  color: #fefefe;
  padding: 70px 0 80px;
}

.bg-hero-index {
  background: linear-gradient(120deg, rgba(10, 20, 32, 0.84), rgba(16, 28, 44, 0.64)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-hero-about {
  background: linear-gradient(120deg, rgba(14, 19, 26, 0.82), rgba(20, 31, 48, 0.62)),
    url("https://images.unsplash.com/photo-1504386106331-3e4e71712b38?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-hero-services {
  background: linear-gradient(120deg, rgba(14, 19, 26, 0.82), rgba(20, 31, 48, 0.62)),
    url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-process-index {
  background: linear-gradient(90deg, rgba(250, 252, 255, 0.95), rgba(240, 246, 252, 0.85)),
    url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .column {
  flex: 1;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

.section.compact {
  padding: 50px 0;
}

h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 14px;
}

h3 {
  margin: 0 0 10px;
}

.lead {
  font-size: 18px;
  color: #d9e2ec;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  background: #2f5cff;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #1f2933;
  border: 1px solid #d9e2ec;
}

.inline-link {
  color: #2f5cff;
  text-decoration: underline;
}

.image-card {
  border-radius: 16px;
  overflow: hidden;
  background: #dbe7f3;
  min-height: 260px;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card-grid.spaced {
  margin-top: 28px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card.translucent {
  background: rgba(255, 255, 255, 0.9);
}

.card .price {
  font-weight: 700;
  color: #2f5cff;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background: #dbe7f3;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: #e2e8f0;
  color: #1f2933;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cbd2d9;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.split-note {
  font-size: 14px;
  color: #52606d;
}

.sticky-cta {
  position: fixed;
  top: 28px;
  right: 22px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #1f2933;
  color: #f7f9fb;
  padding: 16px 18px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #2f5cff;
  color: #ffffff;
}

.cookie-actions .reject {
  background: #d9e2ec;
  color: #1f2933;
}

footer {
  background: #0b1b32;
  color: #f7f9fb;
  padding: 40px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-note {
  margin-top: 18px;
  font-size: 13px;
  color: #cbd2d9;
}

.contact-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.contact-block span {
  display: block;
  margin-top: 6px;
  color: #52606d;
}

.legal-text {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0;
}

.legal-text h2 {
  margin-top: 36px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    width: fit-content;
  }
}
