 :root {
   --brand: #2f6f68;
   --brand-dark: #1f4b46;
   --accent: #d38b38;
   --muted: #f4f1ed;
   --text: #1f2328;
   --soft: #6a6f76;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--white);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   padding: 0 20px;
   margin: 0 auto;
   max-width: 1140px;
 }
 
 .site-header {
   background: var(--white);
   position: sticky;
   top: 0;
   z-index: 10;
   border-bottom: 1px solid #e7e2dc;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .logo {
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--brand-dark);
   letter-spacing: 0.5px;
 }
 
 .nav-toggle {
   background: var(--brand);
   color: var(--white);
   border: none;
   padding: 10px 16px;
   border-radius: 24px;
   font-size: 0.9rem;
   cursor: pointer;
 }
 
 .nav-links {
   list-style: none;
   padding: 0;
   margin: 16px 0 0;
   display: none;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 body.nav-open .nav-links {
   display: flex;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--muted);
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 24px;
 }
 
 .section-header h2 {
   margin: 0;
   font-size: 1.8rem;
 }
 
 .section-header p {
   margin: 0;
   color: var(--soft);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
   align-items: flex-start;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: var(--soft);
   max-width: 640px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 28px;
   border: 1px solid transparent;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.primary {
   background: var(--brand);
   color: var(--white);
 }
 
 .btn.secondary {
   background: transparent;
   border-color: var(--brand);
   color: var(--brand-dark);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--white);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid #e4ded8;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
   font-size: 1.2rem;
 }
 
 .icon-row {
   display: flex;
   align-items: center;
   gap: 12px;
 }
 
 .icon {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(47, 111, 104, 0.12);
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .feature {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   background: #fff9f2;
   border-radius: 14px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .stat-bar {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .stat {
   background: var(--white);
   padding: 16px;
   border-radius: 14px;
   border: 1px solid #e5dfd8;
 }
 
 .stat strong {
   font-size: 1.5rem;
 }
 
 .testimonial {
   background: var(--brand-dark);
   color: var(--white);
   padding: 24px;
   border-radius: 18px;
 }
 
 .testimonial span {
   color: #d7ebe8;
   font-size: 0.9rem;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .faq-item {
   border: 1px solid #e4ded8;
   border-radius: 14px;
   overflow: hidden;
 }
 
 .faq-question {
   background: var(--white);
   border: none;
   width: 100%;
   text-align: left;
   padding: 16px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   color: var(--soft);
 }
 
 .cta-panel {
   background: var(--brand);
   color: var(--white);
   padding: 28px;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cta-panel .btn.secondary {
   color: var(--white);
   border-color: var(--white);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-item {
   background: var(--white);
   border-radius: 14px;
   padding: 18px;
   border-left: 4px solid var(--accent);
 }
 
 .info-block {
   background: #f7f2ec;
   border-radius: 16px;
   padding: 20px;
 }
 
 .site-footer {
   background: #171a1c;
   color: #cdd2d6;
   padding: 40px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-grid h3 {
   margin: 0 0 8px;
   color: var(--white);
 }
 
 .footer-grid ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: var(--white);
   border-radius: 16px;
   padding: 18px;
   border: 1px solid #e5dfd8;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(17, 17, 17, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 40;
   padding: 20px;
 }
 
 .modal-content {
   background: var(--white);
   border-radius: 18px;
   max-width: 560px;
   width: 100%;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px 0;
   border-bottom: 1px solid #eee6de;
 }
 
 .toggle-button {
   border: 1px solid var(--brand);
   background: transparent;
   color: var(--brand-dark);
   padding: 6px 14px;
   border-radius: 20px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .toggle-button[aria-pressed="true"] {
   background: var(--brand);
   color: var(--white);
 }
 
 .legal-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 @media (min-width: 820px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     gap: 20px;
     margin: 0;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-content {
     flex: 1;
   }
 
   .hero-visual {
     flex: 0.8;
     display: flex;
     justify-content: flex-end;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split > div {
     flex: 1;
   }
 
   .stat-bar {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 200px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-item {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
