 :root {
   --bg: #f7f5f2;
   --ink: #1e1f23;
   --muted: #5b5f6a;
   --accent: #1f5e5b;
   --accent-2: #b6842a;
   --card: #ffffff;
   --line: #e2ded8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 6%;
   border-bottom: 1px solid var(--line);
   background: #fffaf3;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: lowercase;
 }
 
 .nav {
   display: flex;
   align-items: center;
   gap: 18px;
   font-size: 14px;
 }
 
 .ad-label {
   padding: 6px 10px;
   border: 1px solid var(--accent-2);
   color: var(--accent-2);
   font-size: 12px;
   text-transform: uppercase;
   letter-spacing: 0.08em;
 }
 
 .main {
   flex: 1;
 }
 
 .section {
   padding: 64px 6%;
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split {
   display: flex;
   gap: 36px;
   align-items: stretch;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split-content,
 .split-media {
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .split-media {
   min-height: 320px;
   background: #e9e2d7;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .hero {
   padding-top: 40px;
 }
 
 .hero h1 {
   font-size: 44px;
   margin: 0;
 }
 
 .hero p {
   font-size: 18px;
   color: var(--muted);
   margin: 0;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
 }
 
 .btn {
   border: none;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .btn.inline {
   padding: 0;
   background: none;
   border: none;
   color: var(--accent-2);
   font-weight: 600;
 }
 
 .grid-cards {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--card);
   border-radius: 16px;
   border: 1px solid var(--line);
   overflow: hidden;
   display: flex;
   flex-direction: column;
 }
 
 .card-body {
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card-media {
   background: #efe7dd;
   height: 180px;
 }
 
 .tag {
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 12px;
   color: var(--accent-2);
 }
 
 .muted {
   color: var(--muted);
 }
 
 .price {
   font-size: 20px;
   font-weight: 700;
 }
 
 .section-alt {
   background: #ffffff;
 }
 
 .section-bg {
   background-size: cover;
   background-position: center;
   color: #fff;
   position: relative;
 }
 
 .section-bg::before {
   content: "";
   position: absolute;
   inset: 0;
   background: rgba(18, 18, 18, 0.55);
 }
 
 .section-bg .section-inner {
   position: relative;
   z-index: 1;
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 14px;
   background: #fff;
   padding: 24px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .form-wrap label {
   font-weight: 600;
   font-size: 14px;
 }
 
 .form-wrap input,
 .form-wrap select {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid var(--line);
 }
 
 .footer {
   padding: 40px 6%;
   background: #111417;
   color: #f2f2f2;
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
 }
 
 .footer small {
   color: #b5b8bf;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 24px;
   right: 24px;
   background: var(--accent-2);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   z-index: 10;
   cursor: pointer;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: #fff;
   border: 1px solid var(--line);
   padding: 16px;
   border-radius: 14px;
   display: none;
   gap: 12px;
   align-items: center;
   justify-content: space-between;
   z-index: 11;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .pill {
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 8px 14px;
   font-size: 14px;
   width: fit-content;
 }
 
 .image-inline {
   display: flex;
   gap: 14px;
   align-items: center;
 }
 
 .image-inline .thumb {
   width: 160px;
   height: 110px;
   border-radius: 12px;
   overflow: hidden;
   background: #e7dfd3;
 }

 .bg-insight {
   background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
 }

 .bg-vision {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
 }

 .bg-privacy {
  background-image: url("https://images.unsplash.com/photo-1481886756534-97af88ccb438?w=1400&q=80");
 }

 .bg-gdpr {
  background-image: url("https://images.unsplash.com/photo-1481277542470-605612bd2d61?w=1400&q=80");
 }

 .bg-cookies {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
 }

 .bg-terms {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
 }

 .bg-about {
   background-image: url("https://images.unsplash.com/photo-1473186578172-c141e6798cf4?w=1400&q=80");
 }

 .bg-services {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
 }

 .bg-contact {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
 }

 .bg-thanks {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
 }
 
 @media (max-width: 960px) {
   .split {
     flex-direction: column;
   }
 
   .split.reverse {
     flex-direction: column;
   }
 
   .hero h1 {
     font-size: 36px;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 88px;
   }
 }
