 :root {
   --ink: #111111;
   --muted: #5a5a5a;
   --bg: #f6f2ee;
   --accent: #1d6b5f;
   --accent-soft: #d8efe9;
   --warm: #f3e4d7;
   --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: #ffffff;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .split-nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 22px 0;
   border-bottom: 1px solid #ececec;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .nav-links {
   display: flex;
   gap: 18px;
   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: 48px 0 36px;
 }
 
 .hero-card {
   background: var(--bg);
   padding: 28px;
   border-radius: 24px;
   box-shadow: var(--shadow);
 }
 
 .hero-title {
   font-size: clamp(2.1rem, 3vw, 3.2rem);
   margin: 0 0 16px;
 }
 
 .hero-sub {
   color: var(--muted);
   font-size: 1.1rem;
   line-height: 1.6;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 22px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid transparent;
 }
 
 .btn-primary {
   background: var(--accent);
   color: #ffffff;
 }
 
 .btn-outline {
   border-color: var(--accent);
   color: var(--accent);
   background: transparent;
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section-alt {
   background: var(--bg);
 }
 
 .section-warm {
   background: var(--warm);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 26px;
   align-items: center;
 }
 
 .split.reverse {
   flex-direction: column-reverse;
 }
 
 .panel {
   flex: 1;
 }
 
 .panel h2 {
   margin-top: 0;
   font-size: clamp(1.6rem, 2.4vw, 2.4rem);
 }
 
 .panel p {
   color: var(--muted);
   line-height: 1.7;
 }
 
 .story-card {
   background: #ffffff;
   padding: 24px;
   border-radius: 18px;
   box-shadow: var(--shadow);
 }
 
 .inline-cta {
   color: var(--accent);
   font-weight: 600;
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .pill {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--accent-soft);
   font-size: 0.9rem;
 }
 
 .testimonial {
   padding: 18px;
   border-left: 3px solid var(--accent);
   background: #ffffff;
   margin-bottom: 16px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: var(--accent);
   margin-top: 8px;
 }
 
 .price-cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .price-card {
   background: #ffffff;
   padding: 22px;
   border-radius: 18px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .price {
   font-size: 1.5rem;
   font-weight: 700;
 }
 
 .form-wrap {
   background: #ffffff;
   padding: 26px;
   border-radius: 22px;
   box-shadow: var(--shadow);
 }
 
 form {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 label {
   font-weight: 600;
   font-size: 0.95rem;
 }
 
 input,
 select {
   padding: 12px;
   border-radius: 10px;
   border: 1px solid #d9d9d9;
   font-size: 1rem;
 }
 
 .footer {
   padding: 32px 0;
   background: #0f2f2a;
   color: #ffffff;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.9rem;
 }
 
 .sticky-cta {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: var(--accent);
   color: #ffffff;
   padding: 12px 18px;
   border-radius: 999px;
   box-shadow: var(--shadow);
   font-weight: 600;
   z-index: 5;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 0;
   left: 0;
   right: 0;
   background: #ffffff;
   border-top: 1px solid #e5e5e5;
   box-shadow: var(--shadow);
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 6;
 }
 
 .cookie-actions {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
 }
 
 @media (min-width: 900px) {
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split.reverse {
     flex-direction: row-reverse;
   }
 
   .price-cards {
     flex-direction: row;
   }
 }
