* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5f6266;
  --accent: #1f4dd7;
  --accent-2: #0b7d6c;
  --paper: #f6f4f1;
  --soft: #eef2f6;
  --sun: #f2e9d9;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 18px 0 6px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-weight: 700;
  font-size: 22px;
}

.brand-tag {
  font-size: 13px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  background: var(--sun);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  padding: 10px 0 22px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #e7e1d7;
  border-bottom: 1px solid #e7e1d7;
  padding: 12px 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: #163cad;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 32px 0 40px;
}

.hero-copy {
  flex: 1 1 380px;
  background: var(--paper);
  padding: 28px;
  position: relative;
  box-shadow: 0 14px 30px var(--shadow);
  transform: translateY(12px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 20px;
  width: 42px;
  height: 42px;
  background: var(--accent-2);
  opacity: 0.22;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-top: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn:hover {
  background: #163cad;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.hero-visual {
  flex: 1 1 360px;
  position: relative;
  min-height: 320px;
  background: #d7dbe3;
  box-shadow: 0 18px 34px var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 50px 0;
}

.section-alt {
  background: var(--soft);
}

.section-sun {
  background: var(--sun);
}

.bg-services {
  background-color: #e8edf4;
  background-image: url("https://images.unsplash.com/photo-1496181133206-80ce9b88a853?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-services .panel {
  background: rgba(255, 255, 255, 0.92);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 12px 24px var(--shadow);
  position: relative;
}

.panel.offset {
  transform: translateY(-18px);
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.img-wrap {
  flex: 1 1 320px;
  background: #d9dee8;
  min-height: 240px;
  position: relative;
  box-shadow: 0 14px 28px var(--shadow);
}

.img-wrap img {
  width: 100%;
  height: 100%;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.step {
  flex: 1 1 220px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 20px var(--shadow);
  border-left: 4px solid var(--accent-2);
}

.quote-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.quote {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 20px var(--shadow);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 180px;
  background-color: #d9dee8;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-block {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}

.form-box {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 24px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfd6df;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-2);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px var(--shadow);
  z-index: 20;
}

.sticky-cta:hover {
  background: #0a6557;
}

.footer {
  padding: 40px 0;
  background: #1c1f25;
  color: #e4e7ee;
}

.footer a {
  color: #e4e7ee;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.legal {
  font-size: 13px;
  color: #c7ccd6;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: var(--ink);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 24px var(--shadow);
  max-width: 340px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-btn {
  border-radius: 6px;
  padding: 8px 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.cookie-btn.alt {
  background: transparent;
  color: var(--accent);
}

.notice {
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 20px var(--shadow);
}

.asym-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.asym-row .aside {
  flex: 1 1 260px;
}

.asym-row .main {
  flex: 2 1 420px;
}

.back-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent);
  text-decoration: underline;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 20px var(--shadow);
}

.table-row span {
  flex: 1 1 160px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
