 :root {
   color-scheme: light;
   --ink: #111217;
   --muted: #5a606b;
   --accent: #2b5fd9;
   --accent-2: #d9572b;
   --paper: #f6f4ef;
   --sand: #ece4d6;
   --night: #0b0c12;
   --line: #dad4c8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 header {
   padding: 28px 6vw 12px;
 }
 
 .nav-wrap {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand span {
   font-weight: 700;
   font-size: 20px;
 }
 
 .ad-label {
   font-size: 12px;
   color: var(--muted);
 }
 
 nav {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--sand);
   color: var(--ink);
   font-size: 13px;
 }
 
 .cta {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .cta.alt {
   background: var(--accent-2);
 }
 
 .cta.ghost {
   background: transparent;
   border: 1px solid var(--line);
   color: var(--ink);
 }
 
 .page {
   padding: 0 6vw 80px;
 }
 
 .hero {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
   align-items: stretch;
   background: #fff;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 18px 40px rgba(12, 16, 29, 0.12);
 }
 
 .hero-text {
   flex: 1 1 320px;
   padding: 36px;
 }
 
 .hero-media {
   flex: 1 1 320px;
   min-height: 320px;
   background-color: #d8d2c6;
   display: flex;
 }
 
 .hero-media img {
   width: 100%;
   height: 100%;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 30px;
   align-items: center;
   padding: 50px 0;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .panel {
   flex: 1 1 320px;
 }
 
 .panel.card {
   background: #fff;
   padding: 28px;
   border-radius: 20px;
   box-shadow: 0 14px 30px rgba(10, 18, 29, 0.08);
 }
 
 .panel.image {
   background-color: #d8d2c6;
   border-radius: 20px;
   overflow: hidden;
 }
 
 .panel.image img {
   width: 100%;
   height: 100%;
 }
 
 .metrics {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .metric {
   flex: 1 1 160px;
   background: #fff;
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .services-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .service-card {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 18px;
   overflow: hidden;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
 }
 
 .service-card .card-media {
   background-color: #d8d2c6;
 }
 
 .service-card img {
   width: 100%;
   height: 180px;
 }
 
 .service-card .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 700;
 }
 
 .form-shell {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   background: #fff;
   border-radius: 24px;
   padding: 30px;
   box-shadow: 0 16px 40px rgba(8, 12, 23, 0.08);
 }
 
 .form-info {
   flex: 1 1 260px;
 }
 
 form {
   flex: 1 1 280px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 14px;
   font-family: inherit;
 }
 
 textarea {
   min-height: 110px;
   resize: vertical;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .notice {
   font-size: 13px;
   color: var(--muted);
 }
 
 .section-title {
   font-size: 26px;
   margin: 0 0 12px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   background: var(--night);
   color: #fff;
   padding: 10px 16px;
   border-radius: 999px;
   display: flex;
   gap: 8px;
   align-items: center;
   z-index: 10;
 }
 
 .sticky-cta a {
   color: #fff;
 }
 
 footer {
   background: var(--night);
   color: #f2f2f2;
   padding: 40px 6vw;
 }
 
 footer a {
   color: #f2f2f2;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-col {
   flex: 1 1 220px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 14px 32px rgba(8, 12, 23, 0.18);
   max-width: 320px;
   display: none;
   z-index: 15;
 }
 
 .cookie-banner.visible {
   display: block;
 }
 
 .tagline {
   font-size: 14px;
   color: var(--muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .wide-note {
   background: #fff;
   border-radius: 20px;
   padding: 22px;
   border: 1px solid var(--line);
 }
 
 .quote {
   background: #fff;
   border-left: 4px solid var(--accent);
   padding: 18px;
 }
 
 .bg-panel {
   background-color: #d8d2c6;
   border-radius: 20px;
   overflow: hidden;
   padding: 26px;
   color: #fff;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .bg-panel.dark {
   background-color: #15161d;
 }
 
 .bg-panel.light {
   background-color: #e0d9ce;
   color: var(--ink);
 }
 
 .bg-panel .cta {
   align-self: flex-start;
 }
 
 .bg-image-1 {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-image-2 {
   background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-image-3 {
   background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .simple-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding-left: 16px;
 }
 
 .page-hero {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   align-items: center;
   background: #fff;
   padding: 28px;
   border-radius: 20px;
 }
 
 .page-hero .panel.image img {
   height: 220px;
 }
 
 .legal-block {
   background: #fff;
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
 }
 
 .inline-cta {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .contact-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .contact-card {
   flex: 1 1 240px;
   background: #fff;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .spacer {
   height: 14px;
 }
*** End Patch
