 :root {
   --ink: #101315;
   --soft-ink: #364148;
   --mist: #f2f4f6;
   --light: #ffffff;
   --accent: #1b6ef3;
   --accent-dark: #0f3e8b;
   --peach: #ffe8d4;
   --sage: #d9efe4;
   --lavender: #ece7ff;
   --sun: #fff2b8;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: var(--light);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   border-radius: 18px;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 header {
   padding: 24px 6vw 10px;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   font-size: 0.95rem;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .cta-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   background: var(--accent);
   color: var(--light);
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .cta-btn.secondary {
   background: var(--ink);
 }
 
 .cta-btn.ghost {
   background: transparent;
   border: 1px solid var(--ink);
   color: var(--ink);
 }
 
 .cta-btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 12px 24px rgba(16, 19, 21, 0.12);
 }
 
 .split-section {
   display: flex;
   gap: 48px;
   padding: 60px 6vw;
   align-items: center;
   justify-content: space-between;
 }
 
 .split-section.reverse {
   flex-direction: row-reverse;
 }
 
 .split-section .copy {
   flex: 1 1 50%;
   min-width: 260px;
 }
 
 .split-section .visual {
   flex: 1 1 50%;
   min-width: 260px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.14em;
   font-size: 0.75rem;
   color: var(--soft-ink);
   margin-bottom: 14px;
 }
 
 h1, h2, h3 {
   font-family: "Manrope", "Segoe UI", sans-serif;
   margin: 0 0 16px;
 }
 
 h1 {
   font-size: clamp(2.3rem, 4vw, 3.6rem);
 }
 
 h2 {
   font-size: clamp(1.8rem, 3vw, 2.6rem);
 }
 
 h3 {
   font-size: 1.3rem;
 }
 
 p {
   margin: 0 0 16px;
   color: var(--soft-ink);
 }
 
 .highlight {
   background: var(--sun);
   padding: 18px;
   border-radius: 16px;
   font-weight: 600;
   color: var(--ink);
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .card {
   flex: 1 1 220px;
   background: var(--light);
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 14px 30px rgba(16, 19, 21, 0.08);
 }
 
 .card .price {
   font-weight: 700;
   font-size: 1.15rem;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.8rem;
   background: var(--mist);
   margin-bottom: 10px;
 }
 
 .section-ink {
   background: var(--mist);
 }
 
 .section-peach {
   background: var(--peach);
 }
 
 .section-sage {
   background: var(--sage);
 }
 
 .section-lavender {
   background: var(--lavender);
 }
 
 .section-tight {
   padding: 40px 6vw;
 }
 
 .inline-link {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .service-selector {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin: 18px 0 10px;
 }
 
 .service-selector button {
   border-radius: 999px;
   border: 1px solid var(--ink);
   background: transparent;
   padding: 8px 16px;
   cursor: pointer;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 input, select, textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #ccd3d8;
   font-size: 1rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   z-index: 30;
 }
 
 .sticky-cta a {
   background: var(--accent-dark);
 }
 
 footer {
   padding: 40px 6vw 60px;
   background: var(--ink);
   color: var(--light);
 }
 
 .footer-columns {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
 }
 
 .footer-columns a {
   color: var(--light);
   opacity: 0.85;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--light);
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 18px 30px rgba(16, 19, 21, 0.18);
   display: none;
   z-index: 40;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   margin-top: 12px;
   flex-wrap: wrap;
 }
 
 .pill {
   background: var(--mist);
   padding: 10px 14px;
   border-radius: 12px;
   font-weight: 600;
   display: inline-flex;
   gap: 8px;
   align-items: center;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .badge {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .table-like {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   justify-content: space-between;
   gap: 20px;
   padding: 12px 0;
   border-bottom: 1px solid rgba(16, 19, 21, 0.1);
 }
 
 .table-row:last-child {
   border-bottom: none;
 }
 
 @media (max-width: 880px) {
   .split-section,
   .split-section.reverse {
     flex-direction: column;
   }
 
   .nav-links {
     flex-wrap: wrap;
     justify-content: center;
   }
 
   .sticky-cta {
     right: 16px;
     bottom: 16px;
   }
 }
