 :root {
   --ink: #0f172a;
   --muted: #52607a;
   --accent: #0b5c8f;
   --accent-dark: #08476e;
   --surface: #ffffff;
   --surface-alt: #f1f6fb;
   --line: #d7e2ee;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #f8fafc;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover,
 a:focus {
   text-decoration: underline;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .site-header {
   padding: 28px 6% 14px;
   background: var(--surface);
   border-bottom: 1px solid var(--line);
 }
 
 .nav-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
   text-transform: lowercase;
 }
 
 .ad-label {
   background: #eef4fa;
   color: #2a4058;
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   margin-top: 14px;
   flex-wrap: wrap;
 }
 
 .nav-links a {
   font-weight: 500;
 }
 
 .section {
   padding: 80px 6%;
 }
 
 .section.compact {
   padding-top: 50px;
   padding-bottom: 50px;
 }
 
 .section.alt {
   background: var(--surface-alt);
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 0.2em;
   color: var(--muted);
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1 1 320px;
 }
 
 .image-frame {
   background: #dfe8f2;
   border-radius: 20px;
   overflow: hidden;
   min-height: 260px;
 }

 .image-frame.card-image {
   min-height: 170px;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .hero-copy h1 {
   font-size: 2.6rem;
   margin: 12px 0 16px;
 }
 
 .hero-copy p {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 24px;
 }
 
 .btn {
   border: none;
   border-radius: 999px;
   padding: 12px 22px;
   font-weight: 600;
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn.secondary {
   background: #e7eff7;
   color: var(--accent-dark);
 }
 
 .btn:hover,
 .btn:focus {
   transform: translateY(-2px);
 }
 
 .text-link {
   font-weight: 600;
   align-self: center;
 }
 
 .stats-row {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
   margin-top: 24px;
 }
 
 .stat {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px 22px;
   flex: 1 1 180px;
 }
 
 .stat strong {
   display: block;
   font-size: 1.4rem;
 }
 
 .card-row {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
   flex: 1 1 260px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card img {
   width: 100%;
   height: 170px;
   object-fit: cover;
   border-radius: 14px;
 }
 
 .price {
   font-size: 1.3rem;
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .step {
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 16px 20px;
   border-radius: 12px;
 }
 
 .highlight-band {
   background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
   position: relative;
 }
 
 .highlight-band::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(8, 24, 40, 0.72);
 }
 
 .highlight-content {
   position: relative;
   z-index: 1;
   max-width: 760px;
 }
 
 .form-shell {
   background: var(--surface);
   border-radius: 22px;
   padding: 28px;
   border: 1px solid var(--line);
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-bottom: 24px;
 }
 
 .service-option {
   flex: 1 1 220px;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   background: #f9fbfd;
   cursor: pointer;
   transition: border-color 0.2s ease, background 0.2s ease;
 }
 
 .service-option.selected {
   border-color: var(--accent);
   background: #eef6ff;
 }
 
 .service-option input {
   margin-right: 8px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 input,
 select {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 1rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   background: var(--accent);
   color: #fff;
   border: none;
   border-radius: 999px;
   padding: 12px 20px;
   font-weight: 600;
   cursor: pointer;
   box-shadow: 0 10px 30px rgba(11, 92, 143, 0.3);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px 20px;
   display: flex;
   gap: 18px;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   z-index: 20;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
 }
 
 .site-footer {
   background: #0c1a2b;
   color: #dce6f4;
   padding: 50px 6%;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-grid > div {
   flex: 1 1 220px;
 }
 
 .footer-grid a {
   color: #dce6f4;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 @media (max-width: 768px) {
   .hero-copy h1 {
     font-size: 2.1rem;
   }
 
   .sticky-cta {
     left: 20px;
     right: 20px;
     text-align: center;
   }
 }
