 :root {
   --bg: #0f1419;
   --surface: #161e25;
   --surface-alt: #1c2630;
   --text: #e9eef2;
   --muted: #b7c2cc;
   --accent: #56d4ff;
   --accent-soft: #9be7ff;
   --warm: #f1c27d;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   color: var(--accent-soft);
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .site-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 24px 8vw 16px;
   gap: 24px;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 4px;
 }
 
 .brand span {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   gap: 28px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .ad-label {
   font-size: 0.8rem;
   color: var(--warm);
   background: rgba(241, 194, 125, 0.1);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .hero {
   display: flex;
   padding: 40px 8vw 20px;
   gap: 40px;
   align-items: stretch;
 }
 
 .hero-copy {
   flex: 1.1;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .hero-card {
   flex: 0.9;
   background: var(--surface);
   border-radius: 24px;
   padding: 26px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   position: relative;
   top: 18px;
 }
 
 .hero-image {
   width: 100%;
   height: 240px;
   border-radius: 18px;
   overflow: hidden;
   background-color: #22303b;
 }
 
 .hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   background: var(--accent);
   color: #06121a;
 }
 
 .btn-secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .section {
   padding: 50px 8vw;
 }
 
 .section.alt {
   background: var(--surface-alt);
 }
 
 .split-row {
   display: flex;
   gap: 36px;
   align-items: center;
 }
 
 .split-row.reverse {
   flex-direction: row-reverse;
 }
 
 .offset-box {
   background: var(--surface);
   padding: 24px;
   border-radius: 20px;
   width: 60%;
 }
 
 .inline-image {
   width: 40%;
   height: 220px;
   border-radius: 18px;
   overflow: hidden;
   background-color: #1c2b36;
 }
 
 .inline-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .service-card {
   flex: 1 1 240px;
   background: var(--surface);
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   min-width: 220px;
 }
 
 .service-image {
   height: 140px;
   border-radius: 14px;
   overflow: hidden;
   background-color: #22303b;
 }
 
 .service-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--warm);
 }
 
 .floating-panel {
   background: #0d1116;
   border-radius: 20px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   border: 1px solid #1e2a33;
 }
 
 .insights {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .insight-card {
   flex: 1 1 200px;
   background: rgba(86, 212, 255, 0.08);
   border-radius: 16px;
   padding: 16px;
 }
 
 .form-wrap {
   display: flex;
   gap: 28px;
   align-items: stretch;
 }
 
 .lead-form {
   flex: 1;
   background: var(--surface);
   padding: 24px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .lead-form label {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .lead-form input,
 .lead-form select,
 .lead-form textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid #2c3a45;
   background: #0f1419;
   color: var(--text);
 }
 
 .lead-form button {
   border: none;
   cursor: pointer;
 }
 
 .form-aside {
   flex: 0.8;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .aside-image {
   height: 220px;
   border-radius: 18px;
   overflow: hidden;
   background-color: #1c2b36;
 }
 
 .aside-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent);
   color: #051018;
   padding: 12px 16px;
   border-radius: 999px;
   font-weight: 700;
   z-index: 10;
 }
 
 .site-footer {
   margin-top: auto;
   padding: 30px 8vw 40px;
   background: #0b0f14;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #101821;
   border: 1px solid #22303b;
   padding: 18px;
   border-radius: 16px;
   max-width: 360px;
   display: none;
   flex-direction: column;
   gap: 10px;
   z-index: 12;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .cookie-actions button {
   border: none;
   border-radius: 999px;
   padding: 8px 14px;
   cursor: pointer;
 }
 
 .cookie-accept {
   background: var(--accent);
   color: #051018;
 }
 
 .cookie-reject {
   background: transparent;
   border: 1px solid var(--muted);
   color: var(--muted);
 }
 
 .page-hero {
   padding: 40px 8vw 20px;
   display: flex;
   gap: 24px;
   align-items: center;
 }
 
 .page-hero-image {
   width: 40%;
   height: 200px;
   border-radius: 18px;
   overflow: hidden;
   background-color: #22303b;
 }
 
 .page-hero-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }
 
 .legal-content {
   padding: 20px 8vw 50px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .list-inline {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .badge {
   background: rgba(155, 231, 255, 0.12);
   padding: 6px 10px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 @media (max-width: 900px) {
   .hero,
   .split-row,
   .form-wrap,
   .page-hero {
     flex-direction: column;
   }
 
   .offset-box,
   .inline-image,
   .page-hero-image {
     width: 100%;
   }
 
   .hero-card {
     top: 0;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
