* {
  box-sizing: border-box;
}

:root {
  --ink: #1c2026;
  --muted: #5b6670;
  --brand: #2d4b6a;
  --accent: #7c5cff;
  --light: #f5f3ef;
  --sand: #ece6dd;
  --smoke: #f0f2f5;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  background: var(--light);
  padding: 20px 0;
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--brand);
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid #d0c9c1;
  padding: 6px 10px;
  border-radius: 20px;
}

.hero {
  background: var(--sand);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
}

.hero-copy p {
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: #ffffff;
  padding: 14px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(22, 25, 33, 0.12);
  transform: translateY(16px);
}

.hero-card img {
  width: 480px;
  height: 360px;
  border-radius: 22px;
}

.cta-button {
  background: var(--brand);
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

.cta-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--smoke);
}

.section-bg {
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background-color: #2b3b4b;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}

.section-bg .container {
  position: relative;
  z-index: 1;
}

.bg-insight::before {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.bg-guard::before {
  background-image: url("https://images.unsplash.com/photo-1507206130118-b5907f817163?w=1400&q=80");
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.offset-block {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(28, 32, 38, 0.08);
}

.offset-block.highlight {
  background: var(--brand);
  color: #ffffff;
  transform: translateY(-18px);
}

.asym-split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.asym-split.reverse {
  flex-direction: row-reverse;
}

.asym-copy {
  flex: 1 1 320px;
}

.asym-image {
  flex: 1 1 280px;
  background: #dfe5ec;
  border-radius: 26px;
  padding: 10px;
}

.asym-image img {
  width: 100%;
  height: 320px;
  border-radius: 22px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 180px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e3e6eb;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(20, 24, 30, 0.08);
}

.service-card img {
  width: 100%;
  height: 190px;
}

.service-card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.process {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.process-step {
  flex: 1 1 200px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #ffffff;
  border-radius: 12px;
}

.testimonial {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(32, 36, 44, 0.08);
}

.form-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(18, 22, 28, 0.1);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border: 1px solid #cfd5dc;
  border-radius: 10px;
  font-size: 14px;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.service-pill {
  border: 1px solid #c7ccd4;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.service-pill.active {
  border-color: var(--accent);
  color: var(--accent);
}

.footer {
  margin-top: auto;
  background: #14171b;
  color: #f2f4f7;
  padding: 40px 0;
}

.footer a {
  color: #f2f4f7;
  text-decoration: none;
  font-size: 14px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: flex-start;
  justify-content: space-between;
}

.legal {
  font-size: 13px;
  color: #c7cdd4;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--brand);
  color: #ffffff;
}

.cookie-reject {
  background: #d9dee4;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 120px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 9;
}

.page-hero {
  background: var(--smoke);
  padding: 60px 0;
}

.page-hero .asym-split {
  align-items: flex-start;
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(20, 22, 28, 0.1);
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.bg-soft {
  background-color: #d8dfe6;
}

.bg-fog {
  background-color: #dfe5ec;
}

.bg-clay {
  background-color: #e6e0da;
}

.bg-ice {
  background-color: #e8ecef;
}
