 :root {
   --bg: #f6f5f2;
   --dark: #1e1f24;
   --muted: #6a6f7a;
   --accent: #2b6cb0;
   --accent-dark: #1f4f86;
   --warm: #f2ede7;
   --soft: #e9eef4;
   --line: #d7dce2;
   --success: #2f855a;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--dark);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   display: block;
   max-width: 100%;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 select:focus,
 input:focus,
 textarea:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .page {
   min-height: 100vh;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 6vw;
   gap: 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--muted);
   border: 1px solid var(--line);
   padding: 6px 10px;
   border-radius: 999px;
   background: #fff;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .nav-links a {
   font-size: 0.95rem;
 }
 
 .hero {
   background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .hero-overlay {
   background: rgba(24, 29, 38, 0.75);
   padding: 80px 6vw;
 }
 
 .hero-content {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .hero-copy {
   flex: 1 1 320px;
 }
 
 .hero-copy h1 {
   font-size: 2.6rem;
   margin-bottom: 10px;
 }
 
 .hero-copy p {
   color: #e6e9ef;
   margin-bottom: 24px;
 }
 
 .hero-actions {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
 }
 
 .button,
 .ghost-button {
   border: none;
   padding: 12px 20px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button {
   background: var(--accent);
   color: #fff;
 }
 
 .button:hover {
   background: var(--accent-dark);
 }
 
 .ghost-button {
   background: transparent;
   border: 1px solid #fff;
   color: #fff;
 }
 
 .ghost-button:hover {
   background: rgba(255, 255, 255, 0.12);
 }
 
 .split {
   display: flex;
   gap: 48px;
   align-items: center;
   padding: 70px 6vw;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .copy {
   flex: 1 1 320px;
 }
 
 .split .media {
   flex: 1 1 320px;
 }
 
 .media-frame {
   background: var(--soft);
   padding: 14px;
   border-radius: 18px;
 }
 
 .media-frame img {
   width: 100%;
   height: 320px;
   object-fit: cover;
   border-radius: 14px;
 }
 
 .card-row {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
 }
 
 .service-card {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-card img {
   width: 100%;
   height: 180px;
   object-fit: cover;
   border-radius: 12px;
   background: #dfe6ee;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .section-title {
   font-size: 1.9rem;
   margin-bottom: 16px;
 }
 
 .soft-bg {
   background: var(--warm);
 }
 
 .trust-bg {
   background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .trust-overlay {
   background: rgba(24, 29, 38, 0.75);
   padding: 70px 6vw;
 }
 
 .testimonial-bg {
   background-image: url("https://images.unsplash.com/photo-1518779578993-ec3579fee39f?w=1400&q=80");
   background-size: cover;
   background-position: center;
   color: #fff;
 }
 
 .testimonial-overlay {
   background: rgba(30, 34, 44, 0.72);
   padding: 70px 6vw;
 }
 
 .inline-cta {
   font-weight: 600;
 }
 
 .form-wrap {
   background: #fff;
   border-radius: 18px;
   padding: 28px;
   border: 1px solid var(--line);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
   display: block;
   margin-bottom: 6px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   font-size: 1rem;
   font-family: inherit;
   background: #fff;
 }
 
 .note {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .footer {
   padding: 50px 6vw;
   background: #14161b;
   color: #c7ccd5;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 12px;
 }
 
 .footer-links a {
   color: #c7ccd5;
 }
 
 .legal {
   font-size: 0.9rem;
   color: #9aa3b2;
   margin-top: 18px;
 }
 
 .sticky-cta {
   position: fixed;
   right: 22px;
   bottom: 22px;
   z-index: 10;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   bottom: 20px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 320px;
   z-index: 12;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .secondary {
   background: #fff;
   color: var(--accent-dark);
   border: 1px solid var(--accent);
 }
 
 .secondary:hover {
   background: var(--soft);
 }
 
 .page-hero {
   background: #1f2937;
   color: #fff;
 }
 
 .page-hero.alt {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .page-hero.services {
   background-image: url("https://images.pexels.com/photos/1474232/pexels-photo-1474232.jpeg");
   background-size: cover;
   background-position: center;
 }
 
 .page-hero.contact {
   background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .page-hero.privacy {
   background-image: url("https://images.unsplash.com/photo-1502877338535-766e1452684a?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .page-hero.gdpr {
   background-image: url("https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .page-hero.cookies {
   background-image: url("https://images.unsplash.com/photo-1512412046876-f386342eddb3?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .page-hero.terms {
   background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
   background-size: cover;
   background-position: center;
 }
 
 .page-hero .hero-overlay {
   padding: 70px 6vw;
 }
 
 .split-compact {
   padding: 50px 6vw;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .service-line {
   display: flex;
   justify-content: space-between;
   gap: 14px;
   align-items: baseline;
   border-bottom: 1px solid var(--line);
   padding-bottom: 12px;
 }
 
 .contact-block {
   background: #fff;
   border-radius: 16px;
   border: 1px solid var(--line);
   padding: 20px;
 }
 
 .thanks {
   padding: 70px 6vw;
 }
 
 .thanks h1 {
   font-size: 2.2rem;
 }
 
 .reference-list {
   margin-top: 10px;
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
 }
 
 .reference-list a {
   color: #c7ccd5;
   font-size: 0.85rem;
 }
 
 @media (max-width: 900px) {
   .split,
   .split.reverse {
     flex-direction: column;
   }
 
   .hero-content {
     flex-direction: column;
   }
 
   .topbar {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
