 :root {
   --bg: #f8f6f2;
   --bg-alt: #ffffff;
   --text: #1c1c1c;
   --muted: #5c5c5c;
   --brand: #2f4b3b;
   --brand-light: #e7efe8;
   --accent: #c49a6c;
   --line: #ded9d1;
   --shadow: 0 12px 24px rgba(28, 28, 28, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .skip-link {
   position: absolute;
   top: -40px;
   left: 20px;
   background: var(--brand);
   color: #fff;
   padding: 8px 12px;
   border-radius: 6px;
   z-index: 2000;
 }
 
 .skip-link:focus {
   top: 12px;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 1000;
   background: rgba(248, 246, 242, 0.96);
   backdrop-filter: blur(8px);
   border-bottom: 1px solid var(--line);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   font-size: 1.1rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px;
   background: var(--bg-alt);
   border-radius: 12px;
   box-shadow: var(--shadow);
 }
 
 .nav-links a {
   font-weight: 500;
 }
 
 .nav-links.is-open {
   display: flex;
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--bg-alt);
   padding: 8px 12px;
   border-radius: 8px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   letter-spacing: 0.02em;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand);
 }
 
 .button:hover,
 .button:focus {
   transform: translateY(-2px);
   box-shadow: 0 8px 18px rgba(47, 75, 59, 0.2);
 }
 
 main {
   padding-bottom: 60px;
 }
 
 .hero {
   padding: 64px 0 40px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--bg-alt);
   border-radius: 24px;
   padding: 28px;
   box-shadow: var(--shadow);
 }
 
 .hero-meta {
   display: flex;
   flex-direction: column;
   gap: 12px;
   color: var(--muted);
 }

.hero-actions {
  margin-top: 22px;
}
 
 .section {
   padding: 56px 0;
 }
 
 .section--alt {
   background: var(--bg-alt);
 }
 
 .section--accent {
   background: var(--brand-light);
 }
 
 .section-title {
   font-size: 1.8rem;
   margin: 0 0 12px;
 }
 
 .section-lead {
   color: var(--muted);
   max-width: 720px;
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .card {
   background: var(--bg-alt);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.highlight {
   border-color: var(--brand);
   background: #f0f5f1;
 }
 
 .card strong {
   font-size: 1.1rem;
 }
 
 .icon-row {
   display: flex;
   align-items: center;
   gap: 14px;
 }
 
 .icon-row img {
   width: 44px;
   height: 44px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding-left: 18px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 18px;
   background: var(--bg-alt);
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .stat span {
   font-size: 1.6rem;
   font-weight: 700;
 }
 
 .quote {
   padding: 28px;
   border-radius: 20px;
   background: #fff;
   border-left: 6px solid var(--accent);
   box-shadow: var(--shadow);
 }
 
 .tags {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 16px;
 }
 
 .tag {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--bg-alt);
   border: 1px solid var(--line);
   font-size: 0.9rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 18px;
   border-radius: 16px;
   background: var(--bg-alt);
   border: 1px solid var(--line);
 }
 
 .comparison-row strong {
   color: var(--brand);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 24px;
 }
 
 .faq-item {
   background: var(--bg-alt);
   border-radius: 14px;
   border: 1px solid var(--line);
   overflow: hidden;
 }
 
 .faq-trigger {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 16px 18px;
   background: transparent;
   border: none;
   font-size: 1rem;
   font-weight: 600;
   text-align: left;
   cursor: pointer;
 }
 
 .faq-panel {
   display: none;
   padding: 0 18px 16px;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-panel {
   display: block;
 }
 
 .footer {
   padding: 40px 0;
   background: #1b1e1c;
   color: #f5f2ec;
 }
 
 .footer a {
   color: #f5f2ec;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: #fff;
   border-radius: 16px;
   padding: 18px;
   box-shadow: var(--shadow);
   border: 1px solid var(--line);
   z-index: 1500;
   display: none;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   background: rgba(28, 28, 28, 0.6);
   z-index: 1600;
   padding: 20px;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal-content {
   background: #fff;
   border-radius: 20px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 16px;
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .toggle button {
   padding: 6px 14px;
   border-radius: 999px;
   border: 1px solid var(--line);
   background: var(--bg-alt);
   font-weight: 600;
   cursor: pointer;
 }
 
 .toggle button[aria-pressed="true"] {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 .contact-block {
   display: flex;
   flex-direction: column;
   gap: 18px;
   background: var(--bg-alt);
   border-radius: 18px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .table {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 12px;
   border-radius: 12px;
   border: 1px solid var(--line);
   background: #fff;
 }
 
 .table-row span {
   color: var(--muted);
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
     flex-direction: row;
     gap: 20px;
     padding: 0;
     background: transparent;
     box-shadow: none;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid .card {
     flex: 1 1 calc(33.333% - 18px);
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > * {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison-row {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .table-row {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
