* {
  box-sizing: border-box;
}

:root {
  --ink: #1c2230;
  --muted: #586070;
  --light: #f4f6f9;
  --accent: #2f5cff;
  --accent-dark: #2447c7;
  --surface: #ffffff;
  --shadow: 0 20px 40px rgba(18, 32, 59, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fafbfc;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #dfe3ea;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 8%;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 220px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
  color: var(--ink);
}

.hero {
  position: relative;
  padding: 40px 8% 120px;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.hero-copy {
  flex: 1 1 320px;
  max-width: 520px;
}

.hero-copy h3 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.actions-spaced {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid #d7dbe2;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #eef1f6;
}

.hero-panel {
  flex: 1 1 320px;
  position: relative;
  min-height: 320px;
  background: #dfe4ec;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(30px);
}

.floating-card {
  position: absolute;
  right: -10%;
  bottom: -18%;
  width: 260px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.signal-strip {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.signal {
  flex: 1 1 180px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.signal strong {
  display: block;
  font-size: 20px;
}

.section {
  padding: 80px 8%;
  position: relative;
}

.section.alt {
  background: var(--light);
}

.asym-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.asym-grid.reverse {
  flex-direction: row-reverse;
}

.copy-block {
  flex: 1 1 320px;
  max-width: 520px;
}

.copy-block h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.copy-block p {
  color: var(--muted);
}

.img-frame {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #dfe3ea;
  box-shadow: var(--shadow);
}

.offset {
  transform: translateY(-28px);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h4 {
  margin: 14px 0 10px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.services-preview {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-line span {
  color: var(--muted);
}

.form-shell {
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 560px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2d8e2;
  font-size: 15px;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 50px 8%;
  background: #111827;
  color: #d7dbe2;
}

.footer a {
  color: #d7dbe2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 180px;
}

.footer-col h4 {
  margin-top: 0;
  color: #fff;
}

.disclaimer {
  margin-top: 26px;
  font-size: 13px;
  color: #a9b2c5;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 360px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 50px 8% 30px;
}

.page-hero h3 {
  font-size: 32px;
}

.legal {
  padding: 30px 8% 80px;
  max-width: 900px;
}

.legal h4 {
  margin-top: 30px;
}

.bg-city {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-legal {
  background-image: url("https://images.pexels.com/photos/267401/pexels-photo-267401.jpeg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .hero-copy h3 {
    font-size: 30px;
  }
}
