* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f1d1b;
  --muted: #5b5855;
  --accent: #2b5bff;
  --accent-dark: #1b3dba;
  --sand: #f5f1ec;
  --cloud: #f0f4f8;
  --stone: #e5e0d8;
  --midnight: #0f1621;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw 12px;
  gap: 24px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--ink);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 8vw 64px;
  background-color: var(--cloud);
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.2)),
    url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 26px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #ffffff;
}

.btn:hover {
  background-color: var(--accent-dark);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background-color: var(--ink);
  color: #ffffff;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 56px 8vw;
}

.split-section.alt {
  background-color: var(--sand);
}

.split-left,
.split-right {
  flex: 1 1 320px;
}

.split-right img,
.split-left img {
  width: 100%;
  border-radius: 18px;
  background-color: var(--stone);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  padding: 20px;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 16px 36px rgba(20, 20, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  background-color: var(--stone);
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 18px;
  border-radius: 18px;
  background-color: var(--midnight);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-cta a {
  color: #ffffff;
}

.full-width-banner {
  padding: 48px 8vw;
  background-color: var(--midnight);
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.full-width-banner p {
  margin: 0;
  max-width: 520px;
}

.form-section {
  padding: 60px 8vw 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background-color: var(--cloud);
}

.form-panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel h2 {
  margin: 0;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(20, 20, 20, 0.1);
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9cdd2;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 36px 8vw;
  background-color: var(--sand);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer p {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(20, 20, 20, 0.2);
  padding: 18px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 920px;
  z-index: 100;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  flex: 1 1 260px;
}

.simple-page {
  padding: 48px 8vw 80px;
}

.simple-page h1 {
  margin-top: 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.contact-card {
  flex: 1 1 260px;
  padding: 20px;
  border-radius: 18px;
  background-color: var(--cloud);
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 12px 28px rgba(20, 20, 20, 0.08);
}

.service-row span {
  flex: 1 1 200px;
}

.muted {
  color: var(--muted);
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.image-strip img {
  flex: 1 1 220px;
  border-radius: 16px;
  background-color: var(--stone);
}

@media (max-width: 800px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    position: static;
  }
}
