 :root {
   --brand-primary: #1f5b57;
   --brand-accent: #d4a373;
   --brand-soft: #f6f2ec;
   --text-dark: #1f1f1f;
   --text-muted: #5b5b5b;
   --border-light: #e6dfd4;
   --shadow-soft: 0 12px 24px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", Arial, sans-serif;
   color: var(--text-dark);
   background: #ffffff;
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 10px;
   background: var(--brand-primary);
   color: #ffffff;
   padding: 8px 14px;
   border-radius: 6px;
   z-index: 100;
 }
 
 .skip-link:focus {
   left: 10px;
 }
 
 header {
   position: sticky;
   top: 0;
   background: #ffffff;
   border-bottom: 1px solid var(--border-light);
   z-index: 50;
 }
 
 .nav-wrapper {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .brand svg {
   width: 34px;
   height: 34px;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: #ffffff;
   position: absolute;
   top: 64px;
   right: 4%;
   border: 1px solid var(--border-light);
   border-radius: 16px;
   padding: 18px;
   width: min(240px, 90%);
   box-shadow: var(--shadow-soft);
   opacity: 0;
   pointer-events: none;
   transform: translateY(-10px);
   transition: opacity 0.2s ease, transform 0.2s ease;
 }
 
 .nav-links.open {
   opacity: 1;
   pointer-events: auto;
   transform: translateY(0);
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--text-dark);
 }
 
 .menu-toggle {
   border: 1px solid var(--border-light);
   background: #ffffff;
   padding: 8px 12px;
   border-radius: 10px;
   font-weight: 600;
 }
 
 @media (min-width: 860px) {
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     flex-direction: row;
     width: auto;
     padding: 0;
     border: none;
     box-shadow: none;
     opacity: 1;
     pointer-events: auto;
     transform: none;
     background: transparent;
     gap: 20px;
   }
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 40px;
   padding: 32px 0 60px;
 }
 
 section {
   padding: 26px 0;
 }
 
 .section-alt {
   background: var(--brand-soft);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.2rem);
   line-height: 1.15;
   margin: 0;
 }
 
 .hero p {
   color: var(--text-muted);
   margin: 0;
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid var(--brand-primary);
   background: var(--brand-primary);
   color: #ffffff;
   text-align: center;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--brand-primary);
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   border: 1px solid var(--border-light);
   border-radius: 18px;
   padding: 18px;
   background: #ffffff;
   box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 @media (min-width: 860px) {
   .hero-actions {
     flex-direction: row;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 calc(50% - 18px);
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split > * {
     flex: 1;
   }
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-item svg {
   width: 32px;
   height: 32px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: #ffffff;
   border-radius: 18px;
   padding: 16px;
   border: 1px solid var(--border-light);
 }
 
 .stat strong {
   font-size: 1.6rem;
 }
 
 .testimonial {
   background: #ffffff;
   border-left: 4px solid var(--brand-accent);
   padding: 16px;
   border-radius: 12px;
   box-shadow: var(--shadow-soft);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border-light);
   border-radius: 12px;
   overflow: hidden;
   background: #ffffff;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   border: none;
   background: #ffffff;
   padding: 14px 16px;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   color: var(--text-muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .cta-panel {
   background: var(--brand-primary);
   color: #ffffff;
   border-radius: 20px;
   padding: 26px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cta-panel .btn {
   background: #ffffff;
   color: var(--brand-primary);
   border-color: #ffffff;
 }
 
 footer {
   background: #f9f7f4;
   padding: 32px 0;
   border-top: 1px solid var(--border-light);
 }
 
 .footer-columns {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 @media (min-width: 860px) {
   .footer-columns {
     flex-direction: row;
   }
 
   .footer-columns > * {
     flex: 1;
   }
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   background: #ffffff;
   border-radius: 16px;
   box-shadow: var(--shadow-soft);
   border: 1px solid var(--border-light);
   padding: 18px;
   width: min(520px, 92%);
   display: none;
   z-index: 100;
 }
 
 .cookie-banner.visible {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 @media (min-width: 640px) {
   .cookie-actions {
     flex-direction: row;
   }
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 120;
 }
 
 .cookie-modal.open {
   display: flex;
 }
 
 .cookie-modal-content {
   background: #ffffff;
   width: min(620px, 92%);
   border-radius: 18px;
   padding: 22px;
   box-shadow: var(--shadow-soft);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-options label {
   display: flex;
   align-items: center;
   gap: 10px;
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   color: var(--text-muted);
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 6px 12px;
   background: #ffffff;
   border: 1px solid var(--border-light);
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .highlight-panel {
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid var(--border-light);
   padding: 18px;
   box-shadow: var(--shadow-soft);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   border: 1px solid var(--border-light);
   border-radius: 14px;
   padding: 14px;
 }
 
 @media (min-width: 860px) {
   .comparison-row {
     flex-direction: row;
     align-items: center;
   }
 
   .comparison-row > * {
     flex: 1;
   }
 }
