* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2328;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  overflow: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: #5a636b;
  max-width: 220px;
}

.hero {
  position: relative;
  padding: 70px 0 90px;
  background: #0f1b24;
  color: #f8f5f0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1444628838545-ac4016a5418a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  display: flex;
  gap: 32px;
  align-items: flex-end;
}

.hero-card {
  background: rgba(15, 27, 36, 0.75);
  padding: 36px;
  max-width: 520px;
  border: 1px solid rgba(248, 245, 240, 0.2);
}

.hero-title {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-sub {
  margin: 0 0 24px;
  font-size: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f6b54d;
  color: #161b1f;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #dfe5ea;
}

.asym-section {
  padding: 70px 0;
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.asym-media {
  flex: 1 1 320px;
  min-width: 260px;
  background: #e7e1d8;
  padding: 12px;
  position: relative;
}

.asym-media.offset {
  transform: translateY(-18px);
}

.asym-media img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
}

.floating-note {
  background: #fdf8ef;
  border-left: 4px solid #f6b54d;
  padding: 16px 20px;
  margin: 22px 0 0;
}

.service-band {
  background: #1c2328;
  color: #f8f5f0;
  padding: 80px 0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #202a31;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  background: #2f3940;
}

.price-tag {
  font-weight: 700;
  color: #f6b54d;
}

.panel-highlight {
  padding: 70px 0;
  background: #f0ebe3;
}

.panel-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.panel {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.08);
}

.panel h3 {
  margin-top: 0;
}

.form-section {
  padding: 80px 0;
  background: #111a22;
  color: #f8f5f0;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.form-box {
  flex: 1 1 320px;
  background: #1b2630;
  padding: 28px;
  border-radius: 12px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-size: 14px;
}

.lead-form select,
.lead-form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #2f3f4a;
  background: #0f1b24;
  color: #f8f5f0;
}

.form-error {
  font-size: 13px;
  color: #f6b54d;
  display: none;
}

.footer {
  padding: 40px 0 60px;
  background: #0c141b;
  color: #d5d9de;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: inherit;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #a9b2bb;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #1c2328;
  padding: 16px 20px;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.cookie-banner button {
  border: none;
}

.simple-hero {
  padding: 70px 0;
  background: #1c2328;
  color: #f8f5f0;
}

.page-section {
  padding: 60px 0;
}

.split-content {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.info-card {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
}

@media (max-width: 860px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
