* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #122033;
  background-color: #f4f6f9;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f1d2d;
  color: #f4f7fb;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  background: #172a43;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 6px 0;
  font-size: 0.98rem;
}

.sidebar-cta {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-link {
  background: #f7c945;
  color: #0f1d2d;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

section {
  padding: 52px 64px;
}

.section-muted {
  background: #f4f6f9;
}

.section-dark {
  background: #122033;
  color: #f4f7fb;
}

.hero {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 60px 64px;
  color: #f4f7fb;
  background-size: cover;
  background-position: center;
}

.hero-index {
  background-image: url("https://images.unsplash.com/photo-1472289065668-ce650ac443d2?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.hero-inner {
  max-width: 560px;
  background: rgba(10, 20, 30, 0.72);
  padding: 28px;
  border-radius: 16px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: #f7c945;
  color: #0f1d2d;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn.floating {
  background: #2b5b9b;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 32, 51, 0.18);
}

.btn.secondary {
  background: #1a365d;
  color: #ffffff;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1;
  min-width: 260px;
}

.image-frame {
  flex: 1;
  min-width: 260px;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d8e0ea;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(18, 32, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  background-color: #d8e0ea;
}

.price-tag {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a365d;
}

.form-wrapper {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(16, 32, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c9d3df;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.info-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.info-item {
  background: #f4f6f9;
  padding: 14px 16px;
  border-radius: 12px;
  flex: 1;
  min-width: 200px;
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #0f1d2d;
  color: #f4f7fb;
  padding: 18px 20px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.footer {
  background: #0f1d2d;
  color: #f4f7fb;
  padding: 34px 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.small {
  font-size: 0.85rem;
  color: #6b7a90;
}

.small-light {
  font-size: 0.85rem;
  color: #c9d3df;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  section {
    padding: 42px 28px;
  }

  .hero {
    padding: 50px 28px;
  }

  .footer {
    padding: 28px;
  }

  .floating-cta {
    right: 16px;
    bottom: 16px;
  }
}
