 :root {
   --ink: #0f1b2b;
   --steel: #314862;
   --sky: #e7f0f8;
   --mist: #f6f7f9;
   --accent: #2b78c5;
   --accent-dark: #1e5a92;
   --signal: #ffb547;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #ffffff;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .site-header {
   padding: 28px 6vw 12px;
 }
 
 .nav-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
 }
 
 .logo {
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 2px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   padding: 40px 6vw 64px;
   background: linear-gradient(120deg, var(--sky), #ffffff 60%);
 }
 
 .section {
   padding: 56px 6vw;
 }
 
 .section.alt {
   background: var(--mist);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .split-content h1,
 .split-content h2 {
   margin: 0 0 16px;
 }
 
 .split-content p {
   margin: 0 0 16px;
   line-height: 1.6;
   color: var(--steel);
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   margin-top: 18px;
 }
 
 .btn {
   padding: 12px 20px;
   border-radius: 30px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
   border: 1px solid transparent;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #ffffff;
 }
 
 .btn.primary:hover {
   background: var(--accent-dark);
 }
 
 .btn.ghost {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   box-shadow: 0 16px 40px rgba(15, 27, 43, 0.08);
 }
 
 .card img {
   margin-bottom: 14px;
 }
 
 .services-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   background: #ffffff;
   border-radius: 18px;
   padding: 18px;
   border: 1px solid #e5e8ee;
 }
 
 .service-item strong {
   display: block;
   margin-bottom: 6px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .stats-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   padding: 16px;
   border-radius: 16px;
   background: #ffffff;
   border: 1px solid #e6ebf1;
 }
 
 .testimonial {
   border-left: 4px solid var(--signal);
   padding-left: 14px;
   font-style: italic;
 }
 
 .form-panel {
   background: #ffffff;
   border-radius: 22px;
   padding: 22px;
   box-shadow: 0 18px 40px rgba(15, 27, 43, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid #ccd6e1;
   font-family: inherit;
 }
 
 .service-picker {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .service-option {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid #d8e0ea;
 }
 
 .site-footer {
   padding: 40px 6vw;
   background: #0b1320;
   color: #d6dde7;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 18px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 20px;
   bottom: 24px;
   background: var(--signal);
   color: #2d220e;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 700;
   box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 18px;
   right: 18px;
   background: #ffffff;
   border-radius: 18px;
   padding: 16px;
   box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 @media (min-width: 900px) {
   .split {
     flex-direction: row;
     align-items: center;
     gap: 40px;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .card-row,
   .stats-row {
     flex-direction: row;
   }
 
   .card,
   .stat {
     flex: 1;
   }
 
   .service-picker {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-option {
     flex: 1;
     min-width: 200px;
   }
 }
