 :root {
   --ink: #1f2937;
   --muted: #475569;
   --accent: #2b6cb0;
   --accent-strong: #1d4ed8;
   --warm: #f5f1ea;
   --sand: #f8fafc;
   --surface: #ffffff;
   --line: #e2e8f0;
   --highlight: #e8f0ff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--ink);
   background: var(--sand);
 }
 
 img {
   max-width: 100%;
   display: block;
   object-fit: cover;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 20px 6vw;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.3px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
   justify-content: flex-end;
 }
 
 .nav a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .nav a:hover {
   color: var(--accent-strong);
 }
 
 .ad-label {
   font-size: 0.85rem;
   color: var(--accent);
   background: var(--highlight);
   padding: 6px 10px;
   border-radius: 999px;
 }
 
 .section {
   padding: 70px 6vw;
   background: var(--surface);
 }
 
 .section.alt {
   background: var(--warm);
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split .text,
 .split .media {
   flex: 1 1 320px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 2px;
   font-size: 0.75rem;
   color: var(--accent);
   margin-bottom: 12px;
 }
 
 h1,
 h2,
 h3 {
   margin: 0 0 16px;
   line-height: 1.2;
 }
 
 p {
   margin: 0 0 16px;
   color: var(--muted);
   line-height: 1.6;
 }
 
 .small {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .btn:hover {
   background: var(--accent-strong);
 }
 
 .btn.secondary:hover {
   background: var(--highlight);
 }
 
 .inline-link {
   color: var(--accent-strong);
   font-weight: 600;
 }
 
 .inline-link:hover {
   text-decoration: underline;
 }
 
 .img-frame {
   background-color: #dbe4f1;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .card-grid {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
 }
 
 .card {
   flex: 1 1 240px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card img {
   border-radius: 14px;
   width: 100%;
   height: 180px;
 }
 
 .price {
   font-size: 1.1rem;
   font-weight: 700;
 }
 
 .layered {
   position: relative;
   overflow: hidden;
 }
 
 .layered .bg-media {
   position: absolute;
   inset: 0;
   opacity: 0.12;
 }
 
 .layered .content {
   position: relative;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pill {
   background: var(--highlight);
   color: var(--accent-strong);
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .testimonial {
   border-left: 3px solid var(--accent);
   padding-left: 18px;
   font-style: italic;
 }
 
 .form-wrap {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 24px;
   padding: 28px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 label {
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px;
   border: 1px solid var(--line);
   border-radius: 12px;
   font-size: 0.95rem;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 .form-fields[aria-disabled="true"] {
   opacity: 0.5;
   pointer-events: none;
 }
 
 .sticky-cta {
   position: sticky;
   bottom: 0;
   background: rgba(255, 255, 255, 0.95);
   border-top: 1px solid var(--line);
   padding: 14px 6vw;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   z-index: 10;
 }
 
 .footer {
   padding: 40px 6vw;
   background: #111827;
   color: #f8fafc;
 }
 
 .footer a {
   color: #cbd5f5;
 }
 
 .footer .footer-grid {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .footer .small {
   font-size: 0.85rem;
   color: #cbd5f5;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px;
   max-width: 360px;
   box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
   display: none;
   z-index: 999;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   margin-top: 12px;
 }
 
 .notice {
   background: var(--highlight);
   border-radius: 16px;
   padding: 18px;
 }
