* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #0f172a;
  background-color: #f6f7f9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.nav-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 12px;
  color: #374151;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 16px;
  background-color: #e2e8f0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 0 20px;
  position: relative;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  align-self: flex-start;
}

.hero-media {
  align-self: flex-end;
  width: min(560px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background-color: #cbd5f5;
  transform: translateY(-12px);
}

.hero-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #0f172a;
  color: #0f172a;
}

.section {
  padding: 50px 0;
  position: relative;
}

.section.alt {
  background-color: #eef2ff;
}

.section.deep {
  background-color: #0f172a;
  color: #f8fafc;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.offset-card.shift-right {
  align-self: flex-end;
  width: min(640px, 100%);
}

.offset-card.shift-left {
  align-self: flex-start;
  width: min(700px, 100%);
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row .image-card {
  align-self: flex-end;
}

.image-card {
  border-radius: 26px;
  overflow: hidden;
  background-color: #dbeafe;
}

.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background-color: #c7d2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.service-media {
  border-radius: 16px;
  overflow: hidden;
  background-color: #c7d2fe;
}

.service-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
}

.banner-image {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: #ffffff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background-color: #0f172a;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta button {
  background-color: #f8fafc;
  color: #0f172a;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 40px 0 60px;
  background-color: #0f172a;
  color: #e2e8f0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #0f172a;
  color: #ffffff;
}

.cookie-reject {
  background-color: #e2e8f0;
  color: #0f172a;
}

.notice {
  font-size: 14px;
  color: #475569;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background-color: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 860px) {
  .hero-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-media {
    flex: 0.9;
  }

  .section.split {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .split-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .two-column {
    flex-direction: row;
  }
}
