 :root {
   --ink: #1f2428;
   --muted: #59626a;
   --sand: #f4f1ec;
   --sky: #e8f0f6;
   --steel: #d2d8de;
   --accent: #1c4e80;
   --accent-dark: #163b5f;
   --warn: #8a3d2c;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 input:focus,
 select:focus,
 textarea:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .top-bar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 18px 6%;
   background: #fff;
   border-bottom: 1px solid var(--steel);
 }
 
 .brand {
   font-size: 1.3rem;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   align-items: center;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--warn);
   border: 1px solid var(--warn);
   padding: 6px 10px;
   border-radius: 20px;
 }
 
 .hero {
   display: flex;
   align-items: stretch;
   padding: 0;
   min-height: 70vh;
 }
 
 .hero .split-content {
   padding: 60px 6%;
   background: var(--sand);
 }
 
 .hero .split-media {
   background-color: var(--steel);
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
 }

 .bg-towyard {
   background-color: var(--steel);
   background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
 }

 .bg-workflow {
   background-color: var(--steel);
   background-image: url("https://images.unsplash.com/photo-1471478331149-c72f17e33c73?w=1400&q=80");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
 }

 .bg-support {
   background-color: var(--steel);
   background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
 }
 
 .split-section {
   display: flex;
   flex-wrap: wrap;
   gap: 0;
   min-height: 420px;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content,
 .split-media {
   flex: 1 1 50%;
   padding: 50px 6%;
 }
 
 .split-media {
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--sky);
 }
 
 .img-frame {
   background: var(--steel);
   padding: 14px;
   border-radius: 24px;
 }
 
 .img-frame img {
   border-radius: 14px;
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 12px 0;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
   margin-bottom: 18px;
 }
 
 .tagline {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .btn.ghost {
   background: #fff;
   color: var(--accent-dark);
   border-color: var(--steel);
 }
 
 .note-card {
   background: #fff;
   border-radius: 20px;
   padding: 22px;
   border: 1px solid var(--steel);
   margin-top: 20px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin: 24px 0 0;
 }
 
 .service-item {
   display: flex;
   gap: 18px;
   align-items: center;
   padding: 18px;
   border-radius: 18px;
   border: 1px solid var(--steel);
   background: #fff;
 }
 
 .service-item img {
   width: 140px;
   height: 110px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .split-highlight {
   background: var(--sky);
 }
 
 .form-card {
   background: #fff;
   border-radius: 22px;
   padding: 26px;
   border: 1px solid var(--steel);
 }
 
 .form-card form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--steel);
   font-size: 1rem;
 }
 
 .split-dark {
   background: #111820;
   color: #fff;
 }
 
 .split-dark a {
   color: #d8e7ff;
 }
 
 .split-dark .btn {
   background: #fff;
   color: #111820;
   border-color: #fff;
 }
 
 .page-footer {
   padding: 40px 6%;
   background: #0d1217;
   color: #d8dce0;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 10px;
 }
 
 .footer-links a {
   color: #d8dce0;
 }
 
 .disclaimer {
   margin-top: 24px;
   font-size: 0.9rem;
   color: #b9c2cb;
 }
 
 .cookie-banner {
   position: fixed;
   left: 50%;
   bottom: 24px;
   transform: translateX(-50%);
   background: #fff;
   padding: 16px 20px;
   border-radius: 18px;
   border: 1px solid var(--steel);
   display: none;
   max-width: 520px;
   width: calc(100% - 48px);
   z-index: 20;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   background: #fff;
   border-radius: 999px;
   border: 1px solid var(--steel);
   padding: 10px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
   z-index: 18;
 }
 
 .sticky-cta button {
   border-radius: 999px;
 }
 
 .page-header {
   padding: 60px 6% 30px;
   background: var(--sand);
 }
 
 .page-header p {
   max-width: 720px;
 }
 
 .split-muted {
   background: #f9fafb;
 }
 
 .contact-card {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   border: 1px solid var(--steel);
 }
 
 .reference-list {
   margin-top: 16px;
   font-size: 0.95rem;
   color: #c6ced6;
 }
 
 @media (max-width: 900px) {
   .hero,
   .split-section,
   .split-section.reverse {
     flex-direction: column;
   }
 
   .split-content,
   .split-media {
     flex-basis: 100%;
   }
 
   .nav-links {
     flex-wrap: wrap;
     justify-content: flex-end;
   }
 
   .sticky-cta {
     right: 12px;
     bottom: 12px;
   }
 }
