@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Inter"), local("Inter Regular");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #111213;
  background: #f7f7f5;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 13px;
  color: #4e4e4e;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e5e2;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hero {
  background: #0b0f15;
  color: #fefefe;
  padding: 60px 0;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 360px;
}

.split .visual {
  flex: 1 1 360px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 18px;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  margin: 0 0 24px;
  color: #d7d9df;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #f5c451;
  color: #111213;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.btn.secondary {
  background: transparent;
  color: #111213;
  border: 1px solid #d1d1cc;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.inline-link:hover {
  color: #3a3a3a;
  border-color: #3a3a3a;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

.section.soft {
  background: #eceae6;
}

.section-title {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 12px;
}

.section-sub {
  margin: 0 0 24px;
  color: #444;
}

.image-frame {
  background: #dcd9d2;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
}

.image-frame img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e5e2db;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #1b1c20;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e1e0db;
}

.form-wrap {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid #e1e0db;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d5d5d0;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  background: #0f1218;
  color: #f0f0f0;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  font-size: 14px;
}

.footer a {
  color: #f0f0f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer a:hover {
  border-bottom-color: #ffffff;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111213;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  z-index: 10;
}

.sticky-cta button {
  background: #f5c451;
  border: none;
  color: #111213;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta button:hover {
  transform: translateY(-1px);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #e2e0da;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #1b1c20;
  color: #ffffff;
}

.cookie-actions .reject {
  background: #eceae6;
  color: #1b1c20;
}

.cookie-banner.is-hidden {
  display: none;
}

.notice {
  font-size: 14px;
  color: #4e4e4e;
}

.bg-image {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.bg-night {
  background-image: url("https://images.unsplash.com/photo-1770746226580-bdae451d540a?w=1400&q=80");
}

.bg-bridge {
  background-image: url("https://images.unsplash.com/photo-1776549821543-dc2d97ec7804?w=1400&q=80");
}

.bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.62);
}

.bg-image .container {
  position: relative;
  z-index: 1;
}

.pill-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e1e0db;
  font-size: 14px;
}

.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 320px;
}

.contact-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #e3e1da;
}

.hero-image {
  width: 100%;
  height: 360px;
}

.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-highlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  height: 320px;
}

.split-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list li {
  margin-left: 18px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 24px;
    right: 24px;
    justify-content: space-between;
  }
}
