 :root {
   --ink: #1f1d1b;
   --muted: #6a6460;
   --sand: #f4f0ea;
   --accent: #ff6f3d;
   --accent-dark: #c75026;
   --mint: #d9efe8;
   --plum: #3c2f3b;
   --shadow: 0 20px 45px rgba(22, 18, 16, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", sans-serif;
   color: var(--ink);
   background: #fffdfb;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .page {
   display: flex;
   flex-direction: column;
   gap: 0;
   min-height: 100vh;
 }
 
 .nav-wrap {
   position: relative;
   padding: 24px 6vw 0;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   border: 1px solid #efe7df;
   padding: 16px 20px;
   border-radius: 28px;
   background: #fff;
   box-shadow: var(--shadow);
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   font-size: 14px;
 }
 
 .nav-links {
   display: flex;
   align-items: center;
   gap: 18px;
   font-size: 14px;
 }
 
 .nav-cta {
   padding: 10px 16px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .hero {
   padding: 56px 6vw 80px;
   position: relative;
 }
 
 .hero-inner {
   display: flex;
   gap: 48px;
   align-items: flex-start;
   flex-wrap: wrap;
 }
 
 .hero-text {
   flex: 1 1 320px;
   max-width: 560px;
 }
 
 .hero-text h1 {
   font-size: clamp(36px, 4vw, 56px);
   line-height: 1.05;
   margin-bottom: 20px;
 }
 
 .hero-text p {
   color: var(--muted);
   margin-bottom: 28px;
 }
 
 .hero-image {
   flex: 1 1 280px;
   max-width: 480px;
   position: relative;
   transform: translateY(16px);
 }
 
 .floating-tag {
   position: absolute;
   top: -24px;
   right: 12px;
   background: var(--mint);
   padding: 12px 18px;
   border-radius: 18px;
   font-size: 13px;
   font-weight: 600;
 }
 
 .cta-row {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center;
 }

 .cta-row.spaced {
   margin-top: 28px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--plum);
   color: #fff;
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--plum);
   border: 1px solid var(--plum);
 }
 
 .section {
   padding: 80px 6vw;
 }
 
 .section.muted {
   background: var(--sand);
 }
 
 .section.mint {
   background: var(--mint);
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 560px;
 }
 
 .section-header h2 {
   margin: 0;
   font-size: clamp(28px, 3vw, 40px);
 }
 
 .section-grid {
   display: flex;
   gap: 28px;
   flex-wrap: wrap;
   margin-top: 36px;
 }
 
 .card {
   background: #fff;
   border-radius: 24px;
   padding: 24px;
   flex: 1 1 240px;
   min-width: 240px;
   box-shadow: var(--shadow);
   position: relative;
 }
 
 .card.offset {
   transform: translateY(18px);
 }
 
 .card img {
   width: 64px;
   margin-bottom: 16px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
   margin-top: 12px;
 }
 
 .split-block {
   display: flex;
   gap: 36px;
   flex-wrap: wrap;
   align-items: center;
 }
 
 .split-block.reverse {
   flex-direction: row-reverse;
 }
 
 .split-block .copy {
   flex: 1 1 320px;
 }
 
 .split-block .visual {
   flex: 1 1 260px;
   position: relative;
 }
 
 .overlap-panel {
   background: #fff;
   padding: 18px 20px;
   border-radius: 18px;
   position: absolute;
   bottom: -18px;
   left: 10%;
   box-shadow: var(--shadow);
   font-size: 13px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .list-item {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 600;
 }
 
 .list-item span {
   background: var(--accent);
   color: #fff;
   border-radius: 999px;
   padding: 6px 10px;
   font-size: 12px;
 }
 
 .form-wrap {
   display: flex;
   gap: 30px;
   flex-wrap: wrap;
 }
 
 .form-copy {
   flex: 1 1 280px;
 }
 
 form {
   flex: 1 1 320px;
   background: #fff;
   padding: 28px;
   border-radius: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 14px;
 }
 
 input,
 select,
 textarea {
   width: 100%;
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid #ded6cf;
   font-family: inherit;
 }
 
 textarea {
   min-height: 120px;
 }
 
 button {
   border: none;
   font-family: inherit;
   cursor: pointer;
 }
 
 .footer {
   padding: 40px 6vw;
   background: var(--plum);
   color: #fff;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
   justify-content: space-between;
 }
 
 .footer a {
   color: #fff;
   opacity: 0.85;
 }
 
 .sticky-cta {
   position: fixed;
   right: 24px;
   bottom: 24px;
   background: var(--accent);
   color: #fff;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 700;
   box-shadow: var(--shadow);
   z-index: 20;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   right: 24px;
   bottom: 24px;
   background: #fff;
   border-radius: 20px;
   padding: 18px 22px;
   box-shadow: var(--shadow);
   display: flex;
   gap: 16px;
   align-items: center;
   justify-content: space-between;
   z-index: 30;
 }
 
 .cookie-banner.hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 .cookie-actions .btn.secondary {
   border-color: #c9c0b8;
   color: #6a6460;
 }
 
 .meta-strip {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
   font-size: 13px;
   color: var(--muted);
 }
 
 .notice {
   background: #fff5ef;
   border-left: 3px solid var(--accent);
   padding: 12px 14px;
   border-radius: 8px;
 }
 
 .inline-link {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 @media (max-width: 768px) {
   .nav {
     flex-direction: column;
     gap: 12px;
   }
 
   .nav-links {
     flex-wrap: wrap;
     justify-content: center;
   }
 
   .sticky-cta {
     left: 24px;
     right: 24px;
     text-align: center;
   }
 
   .cookie-banner {
     flex-direction: column;
     align-items: flex-start;
   }
 }
