 :root {
   --ink: #0f172a;
   --muted: #475569;
   --accent: #2f6bff;
   --accent-soft: #dbe7ff;
   --paper: #f8fafc;
   --stone: #e2e8f0;
   --shadow: rgba(15, 23, 42, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 .wrap {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 header {
   background: white;
   border-bottom: 1px solid var(--stone);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 0;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   font-size: 14px;
 }
 
 .ad-label {
   background: var(--accent-soft);
   color: var(--ink);
   padding: 6px 10px;
   border-radius: 999px;
   font-size: 12px;
   font-weight: 600;
 }
 
 .split {
   display: flex;
   gap: 40px;
   padding: 60px 0;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .panel {
   flex: 1;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }
 
 .panel.card {
   background: white;
   padding: 30px;
   border-radius: 24px;
   box-shadow: 0 18px 40px var(--shadow);
 }
 
 .hero {
   background: linear-gradient(135deg, rgba(47, 107, 255, 0.12), rgba(15, 23, 42, 0.05));
 }
 
 .hero .panel h1 {
   font-size: 42px;
   line-height: 1.15;
   margin-bottom: 16px;
 }
 
 .hero .panel p {
   color: var(--muted);
   font-size: 18px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 20px;
 }
 
 .btn {
   background: var(--accent);
   color: white;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: none;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .section-muted {
   background: white;
 }
 
.bg-veil {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-color: #0f172a;
  background-size: cover;
  background-position: center;
  color: white;
}

.bg-veil .panel.card,
.bg-veil .form-wrap {
  background: rgba(15, 23, 42, 0.72);
  color: white;
}

.bg-veil .muted {
  color: #e2e8f0;
}

 .tag {
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 1.4px;
   color: var(--muted);
   font-weight: 600;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-item {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   gap: 20px;
   padding: 16px 0;
   border-bottom: 1px dashed var(--stone);
 }
 
 .service-item:last-child {
   border-bottom: none;
 }
 
 .service-price {
   font-weight: 700;
   white-space: nowrap;
 }
 
 .form-wrap {
   background: white;
   padding: 28px;
   border-radius: 24px;
   box-shadow: 0 14px 30px var(--shadow);
 }
 
 .form-wrap form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 14px;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--stone);
   font-size: 14px;
   font-family: inherit;
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--accent);
   color: white;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: 0 12px 30px var(--shadow);
   font-weight: 600;
   z-index: 20;
 }
 
 .grid-inline {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .grid-inline .mini-card {
   flex: 1 1 200px;
   background: white;
   padding: 18px;
   border-radius: 18px;
   border: 1px solid var(--stone);
 }
 
 .footer {
   background: #0f172a;
   color: #e2e8f0;
   padding: 40px 0;
   margin-top: 40px;
 }
 
 .footer a {
   color: #e2e8f0;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   justify-content: space-between;
 }
 
 .legal {
   font-size: 13px;
   color: #cbd5f5;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: white;
   padding: 16px;
   border-radius: 16px;
   box-shadow: 0 16px 32px var(--shadow);
   max-width: 320px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   padding: 8px 12px;
   border-radius: 999px;
   border: 1px solid var(--stone);
   background: white;
   font-weight: 600;
 }
 
 .cookie-actions button.accept {
   background: var(--accent);
   color: white;
   border: none;
 }
 
 .image-frame {
   background: #e0e7ff;
   border-radius: 24px;
   overflow: hidden;
 }
 
 .muted {
   color: var(--muted);
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .sticky-cta {
     right: 12px;
     left: 12px;
     text-align: center;
   }
 }
