* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1b2430;
  background: #f6f7fb;
  line-height: 1.6;
}

a {
  color: #0c4a6e;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #0f172a;
  color: #f8fafc;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  background: rgba(148, 163, 184, 0.2);
  padding: 10px 12px;
  border-radius: 10px;
  color: #e2e8f0;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  color: #e2e8f0;
}

.cta-sticky {
  margin-top: auto;
  background: #f59e0b;
  color: #1f2937;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 48px 64px 96px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: #0f172a;
  color: #f8fafc;
  padding: 32px;
  border-radius: 28px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 600;
}

.btn-secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.hero-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background: #1e293b;
}

.section {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.section.split {
  flex-direction: row;
  gap: 28px;
  align-items: center;
}

.section.dark {
  background: #1e293b;
  color: #e2e8f0;
}

.section.highlight {
  background: #e0f2fe;
}

.section.bg-panel {
  position: relative;
  overflow: hidden;
  color: #f8fafc;
  background: #0f172a;
}

.section.bg-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
  background: #1e293b;
}

.section.bg-panel .bg-content {
  position: relative;
  z-index: 1;
}

.section-title {
  margin: 0;
  font-size: 28px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #e2e8f0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: #334155;
}

.badge.dark {
  background: rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #f8fafc;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
}

.service-card img {
  width: 100%;
  height: 180px;
  background: #dbeafe;
}

.service-content {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 600;
  color: #0f172a;
}

.callout {
  display: flex;
  gap: 16px;
  align-items: center;
}

.callout img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  background: #dbeafe;
}

.story-columns {
  display: flex;
  gap: 20px;
}

.story-columns div {
  flex: 1;
  background: #f1f5f9;
  border-radius: 16px;
  padding: 16px;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.form-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  background: #ffffff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: #0f172a;
  color: #f8fafc;
  font-weight: 600;
  cursor: pointer;
}

.quote {
  padding: 18px;
  border-left: 4px solid #38bdf8;
  background: #f8fafc;
}

.footer {
  font-size: 13px;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0f172a;
  color: #f8fafc;
  padding: 16px 20px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-list li {
  margin-left: 18px;
}

.map-block {
  display: flex;
  gap: 20px;
  align-items: center;
}

.map-block img {
  width: 220px;
  height: 180px;
  border-radius: 16px;
  background: #dbeafe;
}

.notice {
  background: #fef9c3;
  padding: 16px;
  border-radius: 14px;
  color: #854d0e;
}

.inline-cta {
  font-weight: 600;
}

@media (max-width: 1024px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 32px 24px 80px;
  }

  .hero {
    flex-direction: column;
  }

  .section.split,
  .form-wrap,
  .story-columns,
  .map-block {
    flex-direction: column;
  }
}
