 :root {
   --ink: #1e1f24;
   --muted: #5d6670;
   --brand: #2b5c8a;
   --accent: #f2b14a;
   --bg: #f7f6f3;
   --surface: #ffffff;
   --surface-alt: #eef2f6;
   --border: #d8dde3;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
 }
 
 .nav-wrap {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 24px 0 12px;
   gap: 24px;
 }
 
 .brand {
   font-size: 1.3rem;
   font-weight: 700;
   text-transform: capitalize;
 }
 
 .nav-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .nav-links a:hover {
   color: var(--brand);
 }
 
 .ad-label {
   padding: 6px 0 16px;
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.tint {
   background: var(--surface-alt);
 }
 
 .split {
   display: flex;
   gap: 40px;
   align-items: center;
   flex-wrap: wrap;
 }
 
 .split.reverse {
   flex-direction: row-reverse;
 }
 
 .split > .text,
 .split > .media,
 .split > .panel {
   flex: 1 1 320px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 3vw, 3rem);
   margin-bottom: 16px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.75rem;
   color: var(--muted);
 }
 
 .media-frame {
   background: #cfd8e3;
   border-radius: 18px;
   overflow: hidden;
 }
 
 .media-frame.tall {
   min-height: 360px;
 }
 
 .media-frame.soft {
   background: #e6d9cc;
 }
 
 .media-frame.deep {
   background: #d0d8df;
 }
 
 .card-list {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 18px;
   flex: 1 1 240px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card img {
   height: 150px;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--brand);
   color: #ffffff;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: var(--accent);
   color: #1c1c1c;
 }
 
 .btn.ghost {
   background: transparent;
   border: 1px solid var(--border);
   color: var(--ink);
 }
 
 .btn:hover {
   transform: translateY(-1px);
 }
 
 .inline-link {
   color: var(--brand);
   font-weight: 600;
 }
 
 .inline-link:hover {
   text-decoration: underline;
 }
 
 .highlight {
   background: #fef2d0;
   padding: 2px 6px;
   border-radius: 6px;
 }
 
 .sticky-cta {
   position: sticky;
   top: 24px;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   padding: 20px;
   border-radius: 16px;
   border: 1px solid var(--border);
 }
 
 label {
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--border);
   font-family: inherit;
 }
 
 .form-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .form-row > div {
   flex: 1 1 180px;
 }
 
 .quote {
   border-left: 3px solid var(--accent);
   padding-left: 14px;
   color: var(--muted);
 }
 
 .footer {
   background: #13161a;
   color: #f1f2f4;
   padding: 48px 0;
 }
 
 .footer a:hover {
   color: var(--accent);
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-grid > div {
   flex: 1 1 220px;
 }
 
 .disclaimer {
   margin-top: 18px;
   font-size: 0.9rem;
   color: #d3d7dc;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 16px;
   border-radius: 14px;
   max-width: 320px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-actions button {
   flex: 1;
 }
 
 .legal-block {
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 22px;
   border-radius: 16px;
 }
 
 .taglist {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   padding: 6px 12px;
   border-radius: 999px;
   background: #e8edf4;
   font-size: 0.85rem;
 }
