* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1f;
  --muted: #5a5a63;
  --soft: #f5f2ee;
  --mist: #eef4f5;
  --accent: #2f5f8f;
  --accent-dark: #1f3d5f;
  --sun: #f2c179;
  --card: #ffffff;
  --border: #d9d9df;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: #fbfbfd;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  background: var(--accent-dark);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.4rem 1.6rem;
  text-align: center;
}

header {
  padding: 1.5rem 4vw 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  padding: 2rem 4vw 3rem;
  gap: 2.5rem;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0;
}

.hero-panel {
  flex: 1;
  min-height: 360px;
  border-radius: 24px;
  background-color: #c7d7e4;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--sun);
  color: var(--ink);
}

.section {
  padding: 3rem 4vw;
}

.section.mist {
  background: var(--mist);
}

.section.soft {
  background: var(--soft);
}

.section-backdrop {
  background-color: #e7edf3;
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 28, 41, 0.55);
}

.section-backdrop .content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.split {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .visual {
  flex: 1;
  background-color: #dfe7ef;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.split .visual img {
  width: 100%;
  height: 100%;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.service-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 10px 30px rgba(26, 39, 61, 0.08);
  align-items: center;
}

.service-card img {
  border-radius: 12px;
  width: 160px;
  height: 120px;
  background-color: #cfd7de;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--sun);
  padding: 1rem 1.2rem;
  border-radius: 12px;
}

.form-card {
  background: #ffffff;
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(12, 20, 34, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-card label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.form-card button {
  margin-top: 0.5rem;
}

.sticky-cta {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  background: var(--accent-dark);
  color: #ffffff;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta button {
  background: #ffffff;
  color: var(--accent-dark);
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 2rem 4vw;
  background: #0e1a26;
  color: #ffffff;
}

.footer a {
  color: #ffffff;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.legal-disclaimer {
  font-size: 0.9rem;
  color: #c8d2de;
}

.cookie-banner {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  background: #ffffff;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #d9dfe8;
  color: var(--ink);
}

.cookie-banner.is-hidden {
  display: none;
}

.page-hero {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 4vw 1.5rem;
  align-items: center;
}

.page-hero .visual {
  flex: 1;
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d6dce6;
}

.page-hero .content {
  flex: 1;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 10px 25px rgba(26, 38, 60, 0.08);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .split,
  .page-hero {
    flex-direction: column;
  }

  .sticky-cta {
    left: 1rem;
    right: 1rem;
    bottom: 0.8rem;
    justify-content: space-between;
  }
}
