 :root {
   --ink: #1b1c20;
   --muted: #5f6b76;
   --accent: #2c7a7b;
   --accent-dark: #1f5c5e;
   --soft: #f5f3f0;
   --warm: #fff7ef;
   --cool: #edf3f4;
   --line: #d8d6d2;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   min-height: 100vh;
 }
 
 .sidebar {
   display: flex;
   flex-direction: column;
   gap: 18px;
   padding: 24px;
   background: var(--cool);
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .brand span {
   font-size: 14px;
   color: var(--muted);
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav a {
   padding: 10px 14px;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.75);
   border: 1px solid transparent;
   transition: all 0.2s ease;
 }
 
 .nav a:hover {
   border-color: var(--accent);
   color: var(--accent);
 }
 
 .nav-cta {
   background: var(--accent);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   text-align: center;
   font-weight: 600;
 }
 
 .main {
   flex: 1;
   display: flex;
   flex-direction: column;
 }
 
 .section {
   padding: 40px 24px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .section.split {
   background: var(--soft);
 }
 
 .section.warm {
   background: var(--warm);
 }
 
 .section.cool {
   background: var(--cool);
 }
 
 .section .content {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .eyebrow {
   font-size: 13px;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: var(--accent);
 }
 
 .hero-title {
   font-size: 34px;
   line-height: 1.15;
   margin: 0;
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 12px;
   border: 1px solid var(--accent);
   color: var(--accent);
   font-weight: 600;
 }
 
 .button.primary {
   background: var(--accent);
   color: #ffffff;
 }
 
 .button.ghost {
   border-color: var(--line);
   color: var(--ink);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   padding: 18px;
   border-radius: 16px;
   background: #ffffff;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .split-row {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .split-row .image-stack {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .image-stack img {
   border-radius: 16px;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 14px;
   border-left: 3px solid var(--accent);
   background: #ffffff;
 }
 
 .form-wrapper {
   background: #ffffff;
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 label {
   font-size: 14px;
   font-weight: 600;
 }
 
 input,
 select,
 textarea {
   padding: 10px 12px;
   border-radius: 10px;
   border: 1px solid var(--line);
   font-size: 15px;
 }
 
 textarea {
   min-height: 90px;
 }
 
 .inline-link {
   color: var(--accent);
   font-weight: 600;
 }
 
 .metrics {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .metric {
   padding: 16px;
   border-radius: 14px;
   background: #ffffff;
   border: 1px solid var(--line);
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 18px;
   right: 18px;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   box-shadow: 0 8px 20px rgba(27, 28, 32, 0.18);
   z-index: 10;
 }
 
 .footer {
   padding: 24px;
   background: #121212;
   color: #dcdcdc;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer a {
   color: #dcdcdc;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #121212;
   color: #ffffff;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-actions button {
   padding: 10px 14px;
   border-radius: 10px;
   border: 1px solid transparent;
   font-weight: 600;
 }
 
 .cookie-actions .accept {
   background: #ffffff;
   color: #121212;
 }
 
 .cookie-actions .reject {
   background: transparent;
   color: #ffffff;
   border-color: #ffffff;
 }
 
 .centered {
   text-align: center;
 }
 
 .page-title {
   font-size: 32px;
   margin: 0;
 }
 
 @media (min-width: 900px) {
   .page {
     flex-direction: row;
   }
 
   .sidebar {
     width: 260px;
     min-height: 100vh;
     position: relative;
   }
 
   .section {
     padding: 60px 60px;
   }
 
   .split-row {
     flex-direction: row;
     align-items: center;
   }
 
   .split-row.reverse {
     flex-direction: row-reverse;
   }
 
   .hero-title {
     font-size: 44px;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .metrics {
     flex-direction: row;
   }
 
   .metric {
     flex: 1;
   }
 
   .hero-actions {
     flex-direction: row;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 }
