 :root {
   --ink: #1f2937;
   --muted: #5b6775;
   --accent: #1b5dbf;
   --accent-dark: #13438a;
   --sun: #f5c451;
   --mist: #eef2f7;
   --fog: #f8fafc;
   --line: #d9e1ec;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--fog);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 60px;
 }
 
 .nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 28px 6vw 0;
 }
 
 .nav .brand {
   font-size: 1.25rem;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav-links {
   display: flex;
   gap: 20px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
   padding: 10px 6vw 0;
 }
 
 .hero-wrap {
   display: flex;
   flex-direction: column;
   gap: 32px;
   background: white;
   border-radius: 28px;
   padding: 32px;
   box-shadow: 0 24px 60px rgba(16, 24, 40, 0.08);
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   line-height: 1.2;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero-cta {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: white;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section {
   display: flex;
   flex-direction: column;
   gap: 24px;
   padding: 0 6vw;
 }
 
 .section-title {
   font-size: 1.8rem;
   margin: 0;
 }
 
 .asym-block {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .offset-card {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: white;
   padding: 26px;
   border-radius: 24px;
   box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
 }
 
 .offset-card.muted {
   background: var(--mist);
 }
 
 .split-stack {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .split-stack .mini {
   display: flex;
   flex-direction: column;
   gap: 14px;
   padding: 20px;
   border-left: 4px solid var(--accent);
   background: white;
   border-radius: 16px;
 }
 
 .metric-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .metric {
   flex: 1 1 140px;
   background: white;
   padding: 18px 20px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .image-strip {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .image-strip img {
   border-radius: 18px;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: white;
   padding: 22px;
   border-radius: 20px;
   border: 1px solid var(--line);
 }
 
 .service-card strong {
   font-size: 1.1rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .quote-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .quote {
   background: var(--ink);
   color: white;
   padding: 22px;
   border-radius: 20px;
 }
 
 .form-panel {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: white;
   padding: 28px;
   border-radius: 24px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
   resize: vertical;
 }
 
 .cta-link {
   color: var(--accent);
   text-decoration: underline;
   font-weight: 600;
 }
 
 .footer {
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding: 32px 6vw 60px;
   background: var(--mist);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 16px;
   right: 16px;
   display: flex;
   gap: 10px;
   align-items: center;
   padding: 12px 16px;
   border-radius: 999px;
   background: white;
   border: 1px solid var(--line);
   box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
   z-index: 10;
 }
 
 .sticky-cta span {
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #0f172a;
   color: white;
   padding: 16px 6vw;
   display: none;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   z-index: 9;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .cookie-actions .btn.secondary {
   border-color: white;
   color: white;
 }
 
 .page-header {
   padding: 20px 6vw 0;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .content-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .legal {
   display: flex;
   flex-direction: column;
   gap: 16px;
   padding: 0 6vw 60px;
 }
 
 .contact-card {
   background: white;
   padding: 24px;
   border-radius: 22px;
   border: 1px solid var(--line);
 }
 
 @media (min-width: 900px) {
   .hero-grid {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-copy {
     flex: 1 1 55%;
   }
 
   .hero-visual {
     flex: 1 1 45%;
   }
 
   .asym-block {
     flex-direction: row;
     align-items: center;
   }
 
   .asym-block.reverse {
     flex-direction: row-reverse;
   }
 
   .split-stack {
     flex-direction: row;
   }
 
   .split-stack .mini {
     flex: 1 1 0;
   }
 
   .image-strip {
     flex-direction: row;
   }
 
   .service-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     flex: 1 1 calc(33% - 18px);
   }
 
   .quote-row {
     flex-direction: row;
   }
 
   .quote {
     flex: 1 1 0;
   }
 
   .content-grid {
     flex-direction: row;
   }
 
   .content-grid .offset-card {
     flex: 1 1 0;
   }
 }
