 :root {
   --bg: #f7f4ef;
   --ink: #1b1b1b;
   --muted: #5d5d5d;
   --accent: #2b6cb0;
   --accent-dark: #1e4e82;
   --soft: #fff;
   --line: #e2ddd4;
   --highlight: #f0e7dc;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   color: var(--accent-dark);
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
 }
 
 .sidebar {
   width: 260px;
   padding: 32px 24px;
   background: #efe7dc;
   border-right: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .brand {
   font-size: 22px;
   font-weight: 700;
   line-height: 1.2;
 }
 
 .ad-label {
   font-size: 13px;
   color: #3f3f3f;
   background: #e6d6c5;
   padding: 8px 10px;
   border-radius: 6px;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav a {
   font-weight: 600;
 }
 
 .content {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 32px;
   padding: 36px 40px 120px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   background: var(--soft);
   border-radius: 18px;
   padding: 32px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
 }
 
 .hero-split {
   display: flex;
   gap: 24px;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
 }
 
 .btn-outline {
   background: transparent;
   border: 2px solid var(--accent);
   color: var(--accent);
 }
 
 .btn-outline:hover,
 .btn-outline:focus {
   color: #fff;
   background: var(--accent);
 }
 
 .image-frame {
   background: #d8d1c7;
   border-radius: 16px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
 }
 
 .image-tall {
   min-height: 320px;
 }
 
 .image-wide {
   min-height: 280px;
 }
 
 .image-mid {
   min-height: 240px;
 }
 
 .image-card {
   height: 120px;
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 20px;
   padding: 28px;
   border-radius: 16px;
   background: #fff;
 }
 
 .section.alt {
   background: var(--highlight);
 }
 
 .split {
   display: flex;
   gap: 24px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 220px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 20px;
   border-radius: 14px;
   background: #fff;
   border: 1px solid var(--line);
 }
 
 .card .price {
   font-size: 18px;
   font-weight: 700;
 }
 
 .price {
   font-size: 18px;
   font-weight: 700;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-row {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 16px;
   padding: 16px;
   background: #fff;
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .metrics {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .metric {
   flex: 1 1 180px;
   background: #f3efe8;
   border-radius: 12px;
   padding: 16px;
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 8px;
   border: 1px solid #cfc6bb;
   font-size: 15px;
   font-family: inherit;
 }
 
 .footer {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 24px;
   border-radius: 16px;
   background: #f5efe6;
   border: 1px solid var(--line);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   padding: 12px 16px;
   background: #1f6f52;
   color: #fff;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
 }
 
 .sticky-cta:hover,
 .sticky-cta:focus {
   background: #14503a;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   max-width: 360px;
   background: #fff;
   border-radius: 12px;
   padding: 16px;
   box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
   border: 1px solid var(--line);
   z-index: 40;
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .badge {
   display: inline-flex;
   padding: 6px 10px;
   border-radius: 999px;
   background: #f0dfcc;
   font-size: 12px;
   font-weight: 600;
 }
 
 .hero-bg {
   background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
   background-size: cover;
   background-position: center;
   border-radius: 18px;
   padding: 32px;
   color: #fff;
   min-height: 240px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
 }
 
 .bg-consulting {
   background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .bg-overlay {
   background: rgba(0, 0, 0, 0.45);
   padding: 24px;
   border-radius: 16px;
   color: #fff;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .notice {
   background: #f8efe3;
   border-left: 4px solid #d6bfa3;
   padding: 14px 16px;
   border-radius: 8px;
 }
 
 @media (max-width: 980px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     flex-direction: row;
     flex-wrap: wrap;
     align-items: center;
   }
 
   .content {
     padding: 24px;
   }
 
   .hero-split,
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
