 :root {
   --ink: #1b1f2a;
   --muted: #5a6472;
   --accent: #2f6bff;
   --accent-soft: #e7eefc;
   --paper: #ffffff;
   --sand: #f4f1ea;
   --mist: #eef2f6;
   --olive: #e9efe6;
   --warning: #f6f0e6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: var(--accent);
   text-decoration: none;
 }
 
 a:hover {
   text-decoration: underline;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 header {
   border-bottom: 1px solid #e0e5ee;
   background: var(--paper);
 }
 
 .nav {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: space-between;
   padding: 18px 6vw;
   gap: 14px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
 }
 
 .nav-label {
   background: var(--warning);
   color: #7b5e2f;
   padding: 6px 10px;
   border-radius: 999px;
   font-size: 0.8rem;
 }
 
 .cta-btn,
 .ghost-btn {
   border-radius: 999px;
   padding: 10px 18px;
   border: 1px solid var(--accent);
   font-weight: 600;
   cursor: pointer;
   background: var(--accent);
   color: #fff;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }
 
 .cta-btn:hover,
 .ghost-btn:hover {
   background: #2557d4;
   border-color: #2557d4;
 }
 
 .ghost-btn {
   background: transparent;
   color: var(--accent);
 }
 
 main {
   flex: 1;
 }
 
 .section {
   padding: 64px 6vw;
 }
 
 .section-title {
   font-size: 2.1rem;
   margin: 0 0 14px;
 }
 
 .section-subtitle {
   color: var(--muted);
   margin: 0 0 24px;
 }
 
 .mag-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 28px;
 }
 
 .col {
   display: flex;
   flex-direction: column;
   gap: 16px;
   min-width: 220px;
 }
 
 .col.wide {
   flex: 2.2;
 }
 
 .col.narrow {
   flex: 1;
 }
 
 .card {
   background: var(--mist);
   border-radius: 16px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.light {
   background: var(--olive);
 }
 
 .card.sand {
   background: var(--sand);
 }
 
 .image-frame {
   background: #d8dde7;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .inline-media {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .split {
   display: flex;
   flex-wrap: wrap;
   gap: 26px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > div {
   flex: 1;
   min-width: 260px;
 }
 
 .sticky-cta {
   position: sticky;
   top: 18px;
   border: 1px dashed #a8b7d4;
   border-radius: 16px;
   padding: 20px;
   background: #f7f9ff;
 }
 
 .services-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
   align-items: center;
   padding: 16px;
   border-radius: 14px;
   background: var(--sand);
 }
 
 .service-row:nth-child(2n) {
   background: var(--mist);
 }
 
 .price {
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .badge {
   display: inline-flex;
   padding: 4px 10px;
   border-radius: 999px;
   background: var(--accent-soft);
   color: #1f3a7a;
   font-size: 0.8rem;
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 14px;
   background: #f8f7fb;
   padding: 24px;
   border-radius: 16px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 input,
 select,
 textarea {
   padding: 12px 14px;
   border-radius: 10px;
   border: 1px solid #cfd6e3;
   font-size: 1rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .inline-cta {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .bg-hero {
   background: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80") center/cover no-repeat;
   color: #fff;
 }
 
 .bg-hero .section-title,
 .bg-hero p {
   color: #fff;
 }
 
 .bg-hero .card {
   background: rgba(255, 255, 255, 0.14);
   color: #fff;
 }
 
 .bg-insight {
   background: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80") center/cover no-repeat;
 }
 
 .bg-insight .card {
   background: rgba(255, 255, 255, 0.92);
 }
 
 .footer {
   background: #0f172a;
   color: #e2e8f0;
   padding: 32px 6vw 40px;
 }
 
 .footer a {
   color: #b7c6ff;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .legal {
   font-size: 0.85rem;
   color: #c7d2fe;
   margin-top: 18px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #111827;
   color: #f9fafb;
   border-radius: 16px;
   padding: 18px;
   display: none;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-btn {
   border-radius: 999px;
   padding: 8px 14px;
   border: 1px solid #cbd5f5;
   background: transparent;
   color: #f9fafb;
   cursor: pointer;
 }
 
 .cookie-btn.primary {
   background: #3b82f6;
   border-color: #3b82f6;
 }
 
 .cookie-btn:hover {
   background: #1f2937;
 }
 
 .cookie-btn.primary:hover {
   background: #2563eb;
 }
 
 .section-note {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .notice {
   border-left: 4px solid var(--accent);
   padding-left: 14px;
 }
 
 @media (max-width: 900px) {
   .nav {
     flex-direction: column;
     align-items: flex-start;
   }
 
   .mag-columns,
   .split {
     flex-direction: column;
   }
 
   .sticky-cta {
     position: static;
   }
 }
