@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;500;700&display=swap");

:root {
  --ink: #1d2329;
  --muted: #5b6770;
  --accent: #1c5d99;
  --accent-soft: #e7f0fb;
  --surface: #ffffff;
  --surface-alt: #f5f2ee;
  --surface-dark: #101418;
  --line: #d6dbe0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 18px 6vw;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 90px 6vw 70px;
  background: linear-gradient(120deg, rgba(16, 20, 24, 0.65), rgba(16, 20, 24, 0.2)),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
  color: #fdfdfd;
}

.hero h1 {
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  margin-bottom: 10px;
}

.hero p {
  max-width: 560px;
  margin: 0 0 24px;
  color: #f1f1f1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.alt {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--surface-alt);
}

.section.dark {
  background: var(--surface-dark);
  color: #f7f7f7;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background: #dde6ef;
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.micro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.micro-card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
  min-width: 220px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.service-card {
  flex: 1 1 250px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: #dfe7ee;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.quote-wall {
  background: linear-gradient(140deg, rgba(232, 241, 251, 0.85), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80") center/cover no-repeat;
  border-radius: 28px;
  padding: 40px;
  color: var(--ink);
}

.form-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

.inline-cta {
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 37, 70, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(15, 20, 30, 0.18);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.cookie-banner .button.alt {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.page-hero {
  padding: 80px 6vw 50px;
  background: var(--surface-alt);
}

.page-hero h1 {
  margin-bottom: 12px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}

.legal {
  max-width: 760px;
}

.legal h2 {
  margin-top: 28px;
}
