 :root {
   color-scheme: light;
   --ink: #1d1c1a;
   --muted: #5f5a52;
   --accent: #b64e2c;
   --accent-dark: #8b3a21;
   --sand: #f6f1ea;
   --leaf: #2f4f3a;
   --fog: #e8dfd2;
   --paper: #fffaf3;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
   border-radius: 18px;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   overflow-x: hidden;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 24px 6vw 0;
   gap: 24px;
 }
 
 .brand {
   font-size: 1.4rem;
   letter-spacing: 0.04em;
   font-weight: 600;
 }
 
 .nav-links {
   display: flex;
   gap: 20px;
   flex-wrap: wrap;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding-bottom: 4px;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
   padding: 64px 6vw 40px;
   position: relative;
 }
 
 .hero::before {
   content: "";
   position: absolute;
   top: -40px;
   right: -20px;
   width: 60%;
   height: 70%;
   background: var(--fog);
   border-radius: 40px;
   z-index: -1;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 18px;
   max-width: 520px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 5vw, 3.6rem);
   margin: 0;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
   border-color: var(--accent);
 }
 
 .hero-visual {
   max-width: 520px;
   align-self: flex-end;
 }
 
 .section {
   padding: 60px 6vw;
   position: relative;
 }
 
 .section.sand {
   background: var(--sand);
 }
 
 .section.fog {
   background: var(--fog);
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-width: 640px;
 }
 
 .section-header h2 {
   margin: 0;
   font-size: clamp(1.8rem, 3.5vw, 2.6rem);
 }
 
 .section-header p {
   color: var(--muted);
   margin: 0;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .panel {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
 }
 
 .panel p {
   margin: 0;
   color: var(--muted);
 }
 
 .offset-card {
   margin-left: 8vw;
 }
 
 .card-row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 220px;
   background: #fff;
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3,
 .card h4 {
   margin: 0;
 }
 
 .card p {
   margin: 0;
   color: var(--muted);
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   padding: 6px 14px;
   border-radius: 999px;
   background: var(--leaf);
   color: #fff;
   font-size: 0.85rem;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .list-item {
   display: flex;
   align-items: flex-start;
   gap: 14px;
 }
 
 .list-item span {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .quote {
   font-style: italic;
   color: var(--muted);
 }
 
 .pricing-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .pricing-tier {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 22px;
   background: #fff;
   border-radius: 20px;
   border: 1px solid rgba(0, 0, 0, 0.06);
 }
 
 .price {
   font-size: 1.6rem;
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .form-wrap {
   display: flex;
   flex-direction: column;
   gap: 16px;
   background: #fff;
   border-radius: 24px;
   padding: 28px;
 }
 
 .form-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .form-row input,
 .form-row select,
 .form-row textarea {
   padding: 12px 14px;
   border-radius: 12px;
   border: 1px solid rgba(0, 0, 0, 0.12);
   font-size: 1rem;
   font-family: inherit;
 }
 
 .footer {
   padding: 40px 6vw 80px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .sticky-cta {
   position: fixed;
   right: 6vw;
   bottom: 24px;
   background: var(--accent);
   color: #fff;
   padding: 14px 20px;
   border-radius: 999px;
   display: flex;
   align-items: center;
   gap: 10px;
   box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
   z-index: 10;
 }
 
 .cookie-banner {
   position: fixed;
   left: 24px;
   bottom: 24px;
   right: 24px;
   background: #fff;
   border-radius: 20px;
   padding: 16px 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .pill {
   border-radius: 999px;
   padding: 10px 18px;
   border: 1px solid rgba(0, 0, 0, 0.2);
   background: transparent;
   font-weight: 600;
 }
 
 .pill.primary {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 .page-title {
   padding: 50px 6vw 20px;
 }
 
 .page-title h1 {
   margin: 0;
   font-size: clamp(2rem, 4vw, 3rem);
 }
 
 .info-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .info-block {
   flex: 1 1 240px;
   background: #fff;
   padding: 20px;
   border-radius: 18px;
 }
 
 @media (min-width: 900px) {
   .hero {
     flex-direction: row;
     align-items: flex-end;
     justify-content: space-between;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .offset-card {
     margin-left: 0;
     transform: translateX(40px);
   }
 
   .pricing-grid {
     flex-direction: row;
   }
 
   .pricing-tier {
     flex: 1;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
