 :root {
   --ink: #1f2430;
   --muted: #5b6470;
   --sand: #f6f2ee;
   --sage: #e3ece6;
   --stone: #f1f3f6;
   --accent: #2f5d6b;
   --accent-2: #874f3b;
   --line: #d6d9df;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:focus,
 button:focus,
 input:focus,
 select:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .layout {
   display: flex;
   min-height: 100vh;
   background: #ffffff;
 }
 
 .sidebar {
   width: 260px;
   background: var(--sand);
   padding: 32px 24px;
   border-right: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
 }
 
 .brand-mark {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: var(--accent);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   font-weight: 700;
 }
 
 .brand-name {
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 
 .ad-label {
   font-size: 0.9rem;
   color: var(--accent-2);
   background: #fff7f3;
   padding: 8px 10px;
   border-radius: 10px;
   border: 1px solid #f0d7cb;
 }
 
 .nav-list {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-list a {
   color: var(--ink);
   font-weight: 600;
 }
 
 .nav-actions {
   margin-top: auto;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .btn {
   border: none;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
   text-align: center;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
   border: 1px solid var(--accent);
 }
 
 .content {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 .section {
   padding: 56px 72px;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .section.compact {
   padding: 40px 72px;
 }
 
 .section.alt {
   background: var(--stone);
 }
 
 .section.soft {
   background: var(--sage);
 }
 
 .hero {
   position: relative;
   color: #ffffff;
   min-height: 420px;
   display: flex;
   align-items: center;
   padding: 72px;
   background-size: cover;
   background-position: center;
 }
 
 .hero::after {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(31, 36, 48, 0.55);
 }
 
 .hero-content {
   position: relative;
   max-width: 560px;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .eyebrow {
   font-size: 0.9rem;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: #e4eff3;
 }
 
 h1,
 h2,
 h3 {
   margin: 0;
 }
 
 h1 {
   font-size: 2.6rem;
   line-height: 1.2;
 }
 
 h2 {
   font-size: 2rem;
 }
 
 h3 {
   font-size: 1.3rem;
 }
 
 .split {
   display: flex;
   gap: 32px;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1;
 }
 
 .image-frame {
   background: #dfe6ee;
   border-radius: 22px;
   overflow: hidden;
 }
 
 .image-frame img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: cover;
 }
 
 .card-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1;
   min-width: 220px;
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   width: 100%;
   height: 160px;
   border-radius: 14px;
   object-fit: cover;
   background: #e7edf4;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
   font-size: 1.1rem;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: #eef3f4;
   color: var(--muted);
   font-size: 0.85rem;
 }
 
 .inline-cta {
   font-weight: 600;
   text-decoration: underline;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .step {
   display: flex;
   gap: 18px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: var(--accent);
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .quote {
   background: #ffffff;
   border-left: 4px solid var(--accent);
   padding: 18px 22px;
   border-radius: 12px;
 }
 
 .form-wrap {
   background: #ffffff;
   padding: 28px;
   border-radius: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 1rem;
 }
 
 .form-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .status {
   font-size: 0.95rem;
   color: var(--accent-2);
 }
 
 .footer {
   padding: 40px 72px;
   background: #1f2430;
   color: #e5e8ee;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer a {
   color: #d8e8f0;
 }
 
 .footer-links {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .sticky-cta {
   position: fixed;
   right: 18px;
   bottom: 18px;
   z-index: 20;
 }
 
 .cookie-banner {
   position: fixed;
   left: 18px;
   bottom: 18px;
   max-width: 320px;
   background: #ffffff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .muted {
   color: var(--muted);
 }
 
 .nav-toggle {
   display: none;
 }
 
 @media (max-width: 980px) {
   .layout {
     flex-direction: column;
   }
 
   .sidebar {
     width: 100%;
     border-right: none;
     border-bottom: 1px solid var(--line);
   }
 
   .nav-toggle {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 10px 14px;
     border-radius: 999px;
     border: 1px solid var(--line);
     background: #ffffff;
     cursor: pointer;
     font-weight: 600;
   }
 
   .nav-list {
     display: none;
   }
 
   .nav-list.open {
     display: flex;
   }
 
   .section,
   .section.compact {
     padding: 40px 28px;
   }
 
   .hero {
     padding: 56px 28px;
   }
 
   .split {
     flex-direction: column;
   }
 }

 .home-hero {
   background-color: #3f4957;
   background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
 }

 .services-hero {
   background-color: #38424f;
   background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
 }

 .about-hero {
   background-color: #3c4858;
   background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
 }

 .contact-hero {
   background-color: #3c4a5a;
   background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1400&q=80");
 }

 .privacy-hero {
   background-color: #3e4652;
   background-image: url("https://images.unsplash.com/photo-1507206130118-b5907f817163?w=1400&q=80");
 }

 .gdpr-hero {
   background-color: #3d4656;
   background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
 }

 .cookies-hero {
   background-color: #3b4652;
   background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
 }

 .terms-hero {
   background-color: #3e4c5a;
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
 }

 .thanks-hero {
   background-color: #3b4654;
   background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
 }

 .bg-insight {
   background-color: #e7eef2;
   background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
   background-size: cover;
   background-position: center;
   background-blend-mode: multiply;
 }
