 :root {
   color-scheme: light;
   --bg: #f6f5f1;
   --surface: #ffffff;
   --accent: #1b7a62;
   --accent-dark: #0e5243;
   --muted: #5a6b63;
   --text: #1d2622;
   --sand: #efe8db;
   --line: #d9d4c9;
   --shadow: rgba(20, 38, 32, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 0.02em;
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--line);
   padding: 0.4rem 0.75rem;
   border-radius: 999px;
   font-size: 0.95rem;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 0.5rem;
   width: 100%;
   padding: 0.8rem 0;
 }
 
 .nav-links a {
   padding: 0.5rem 0;
   color: var(--muted);
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .hero {
   padding: 3.5rem 0 3rem;
   background: linear-gradient(120deg, #f7f1e5 0%, #eef7f3 100%);
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.75rem;
 }
 
 .btn {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 0.65rem 1.3rem;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 section {
   padding: 3rem 0;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin: 0 0 1.2rem;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .card {
   background: var(--surface);
   padding: 1.5rem;
   border-radius: 1.2rem;
   box-shadow: 0 12px 30px var(--shadow);
   border: 1px solid transparent;
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .icon-row {
   display: flex;
   align-items: flex-start;
   gap: 1rem;
 }
 
 .icon-circle {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: #e3f0ea;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .highlight-panel {
   background: var(--sand);
   border-radius: 1.5rem;
   padding: 2rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .stat {
   background: var(--surface);
   padding: 1.2rem;
   border-radius: 1rem;
   border: 1px solid var(--line);
 }
 
 .stat span {
   font-size: 1.6rem;
   font-weight: 700;
   display: block;
 }
 
 .quote {
   font-style: italic;
   font-size: 1.05rem;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .tag {
   background: #e8efe9;
   padding: 0.35rem 0.8rem;
   border-radius: 999px;
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .step {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .step-number {
   background: var(--accent-dark);
   color: #fff;
   width: 32px;
   height: 32px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 0.9rem;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 1rem;
   overflow: hidden;
   background: var(--surface);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   background: var(--surface);
   border: none;
   font-size: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1rem;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-card {
   background: var(--surface);
   border-radius: 1.2rem;
   border: 1px solid var(--line);
   padding: 1.4rem;
 }
 
 .comparison-card ul {
   padding-left: 1.2rem;
 }
 
 .contact-block {
   background: var(--surface);
   border-radius: 1.2rem;
   padding: 1.5rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .site-footer {
   background: #131b18;
   color: #e5ede9;
   padding: 2.5rem 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: #0f1513;
   color: #eef5f1;
   padding: 1rem;
   display: none;
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: block;
 }
 
 .cookie-content {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.6rem;
   flex-wrap: wrap;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 21, 19, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 30;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--surface);
   border-radius: 1.5rem;
   padding: 1.8rem;
   width: min(520px, 100%);
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .modal-close {
   position: absolute;
   top: 1rem;
   right: 1rem;
   border: none;
   background: #edf1ee;
   width: 32px;
   height: 32px;
   border-radius: 50%;
   cursor: pointer;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .option-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1rem;
   padding: 0.6rem 0.8rem;
   border-radius: 0.8rem;
   background: #f3f5f4;
 }
 
 .option-row input {
   width: 18px;
   height: 18px;
 }
 
 .soft-panel {
   background: #f2f1ec;
   border-radius: 1.4rem;
   padding: 1.6rem;
 }
 
 .divider {
   height: 2px;
   width: 100%;
   background: var(--line);
   margin: 1.5rem 0;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
     flex-direction: row;
     align-items: center;
     width: auto;
     gap: 1.2rem;
     padding: 0;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-content {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .hero h1 {
     font-size: 3rem;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .process-steps {
     flex-direction: row;
   }
 
   .step {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-card {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-content {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
