 :root {
   color-scheme: light;
   --ink: #1b1b1f;
   --muted: #5a5f6a;
   --accent: #7c3aed;
   --accent-dark: #5b21b6;
   --paper: #f6f4f1;
   --sand: #efe9e2;
   --mist: #f1f3f6;
   --stone: #2d2d33;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 header {
   padding: 22px 6vw 10px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .top-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 24px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.4rem;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   border: 1px solid #d9d5cf;
   padding: 6px 10px;
   border-radius: 14px;
 }
 
 nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 nav a {
   font-size: 0.95rem;
 }
 
 .hero {
   padding: 40px 6vw 30px;
   display: flex;
   gap: 40px;
   align-items: stretch;
 }
 
 .hero-text {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero-title {
   font-size: 2.6rem;
   line-height: 1.15;
   margin: 0;
 }
 
 .hero-card {
   background: var(--paper);
   padding: 22px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .hero-visual {
   flex: 1;
   border-radius: 28px;
   overflow: hidden;
   background: #e6e2db;
 }
 
 .hero-visual img {
   width: 100%;
   height: 100%;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 38px 6vw;
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .section.alt {
   background: var(--mist);
 }
 
.section.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #ebe7e2;
}

.section.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f1f26;
}

.section.bg-services {
  background-image: url("https://images.unsplash.com/photo-1473187983305-f615310e7daa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #ebe7e2;
}

 .section.dark {
   background: var(--stone);
   color: #f4f4f6;
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0;
 }
 
 .asym-row {
   display: flex;
   gap: 28px;
   align-items: stretch;
 }
 
 .asym-row.reverse {
   flex-direction: row-reverse;
 }
 
 .asym-card {
   flex: 1;
   background: #ffffff;
   border-radius: 20px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .asym-card.muted {
   background: var(--sand);
 }
 
 .asym-media {
   flex: 1;
   border-radius: 20px;
   overflow: hidden;
   background: #ded8cf;
 }
 
 .asym-media img {
   width: 100%;
   height: 100%;
 }
 
 .metrics {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .metric {
   flex: 1;
   min-width: 160px;
   background: #ffffff;
   border-radius: 18px;
   padding: 16px;
 }
 
 .services {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-row {
   display: flex;
   gap: 22px;
 }
 
 .service-card {
   flex: 1;
   background: #ffffff;
   border-radius: 22px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .service-card img {
   width: 100%;
   height: 180px;
 }
 
 .service-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .quote-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .quote {
   flex: 1;
   min-width: 220px;
   background: #ffffff;
   border-radius: 18px;
   padding: 16px;
 }
 
 .form-wrap {
   display: flex;
   gap: 24px;
   align-items: stretch;
 }
 
 form {
   flex: 1;
   background: #ffffff;
   border-radius: 24px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #d7d9df;
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .form-aside {
   flex: 1;
   background: var(--paper);
   border-radius: 24px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 footer {
   margin-top: auto;
   padding: 28px 6vw 40px;
   background: #f6f6f6;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.95rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 20;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #ffffff;
   border: 1px solid #d8d8dc;
   border-radius: 16px;
   padding: 16px;
   max-width: 340px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .hidden {
   display: none;
 }
 
 .info-strip {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: #ffffff;
   border-radius: 16px;
   padding: 16px;
   border: 1px solid #e3e3ea;
 }
 
 .contact-grid {
   display: flex;
   gap: 22px;
   flex-wrap: wrap;
 }
 
 .contact-card {
   flex: 1;
   min-width: 240px;
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .policy {
   max-width: 900px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 @media (max-width: 980px) {
   .hero,
   .asym-row,
   .service-row,
   .form-wrap {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
