 :root {
   color-scheme: light;
   --bg: #f6f4f0;
   --ink: #1d1e20;
   --muted: #5b6068;
   --accent: #1f5f8b;
   --accent-soft: #e6eff6;
   --line: #d6d2cc;
   --light: #ffffff;
   --shadow: 0 14px 40px rgba(17, 18, 23, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
 }
 
 .site-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 22px 6vw;
   background: var(--light);
   border-bottom: 1px solid var(--line);
 }
 
 .logo {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .main-nav {
   display: flex;
   gap: 18px;
   align-items: center;
 }
 
 .main-nav a {
   font-size: 0.95rem;
 }
 
 .ad-label {
   font-size: 0.8rem;
   background: var(--accent-soft);
   color: var(--accent);
   padding: 6px 10px;
   border-radius: 16px;
   white-space: nowrap;
 }
 
 .split-section {
   display: flex;
   gap: 4vw;
   padding: 70px 6vw;
   align-items: center;
   justify-content: space-between;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-text {
   flex: 1;
   min-width: 280px;
 }
 
 .split-media {
   flex: 1;
   min-width: 280px;
 }
 
 .hero {
   background: var(--light);
   padding-top: 90px;
 }
 
 .hero h1 {
   font-size: 2.6rem;
   margin: 0 0 12px;
 }
 
 .section-title {
   font-size: 1.9rem;
   margin: 0 0 12px;
 }
 
 .lead {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 28px;
   background: var(--accent);
   color: var(--light);
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .img-frame {
   background-color: #dfe6ec;
   border-radius: 18px;
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .trust-list,
 .step-list {
   list-style: none;
   padding: 0;
   margin: 18px 0 0;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .step-list li,
 .trust-list li {
   background: var(--light);
   padding: 14px 16px;
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .bg-ops {
   background-color: #1b2a35;
   background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: var(--light);
   position: relative;
 }
 
 .bg-ops::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(17, 24, 39, 0.6);
 }
 
 .bg-ops .split-text,
 .bg-ops .split-media {
   position: relative;
   z-index: 1;
 }
 
 .service-cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-card {
   display: flex;
   gap: 14px;
   background: var(--light);
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 16px;
   align-items: center;
 }
 
 .service-card .img-frame {
   width: 110px;
   height: 90px;
   border-radius: 12px;
   background-color: #dfe6ec;
   overflow: hidden;
   flex-shrink: 0;
 }
 
 .service-card img {
   width: 100%;
   height: 100%;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .form-panel {
   background: var(--light);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
 }
 
 .form-panel label {
   display: block;
   font-weight: 600;
   margin-bottom: 6px;
 }
 
 .form-panel input,
 .form-panel select,
 .form-panel textarea {
   width: 100%;
   padding: 10px 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   margin-bottom: 14px;
   font-family: inherit;
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .site-footer {
   padding: 40px 6vw 80px;
   background: var(--light);
   border-top: 1px solid var(--line);
 }
 
 .footer-top {
   display: flex;
   gap: 4vw;
   flex-wrap: wrap;
   margin-bottom: 24px;
 }
 
 .footer-col {
   flex: 1;
   min-width: 220px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .disclaimer {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   z-index: 20;
 }
 
 .sticky-cta a {
   display: inline-flex;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: var(--light);
   box-shadow: var(--shadow);
 }
 
 .cookie-banner {
   position: fixed;
   left: 50%;
   bottom: 18px;
   transform: translateX(-50%);
   background: var(--light);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px 20px;
   display: flex;
   gap: 16px;
   align-items: center;
   box-shadow: var(--shadow);
   z-index: 30;
 }
 
 .cookie-banner p {
   margin: 0;
   color: var(--muted);
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .hidden {
   display: none;
 }
 
 @media (max-width: 920px) {
   .split-section,
   .split-section.reverse {
     flex-direction: column;
   }
 
   .site-header {
     flex-direction: column;
     gap: 12px;
   }
 
   .main-nav {
     flex-wrap: wrap;
     justify-content: center;
   }
 
   .sticky-cta {
     position: static;
     margin: 24px 6vw;
     display: flex;
     justify-content: center;
   }
 
   .cookie-banner {
     width: calc(100% - 40px);
     flex-direction: column;
     align-items: flex-start;
   }
 }
