 :root {
   --brand-dark: #1f2328;
   --brand-accent: #b58b4e;
   --brand-light: #f7f2ec;
   --text-dark: #1c1c1c;
   --text-muted: #5a5f66;
   --border: #e4dbd1;
   --shadow: 0 18px 45px rgba(31, 35, 40, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--text-dark);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1120px, 90%);
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 12px;
   background: var(--brand-dark);
   color: #fff;
   padding: 8px 16px;
   border-radius: 999px;
   z-index: 20;
 }
 
 .skip-link:focus {
   left: 16px;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 10;
   background: #fff;
   border-bottom: 1px solid var(--border);
 }
 
 .header-inner {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 18px 0;
 }
 
 .brand {
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .nav-toggle {
   border: 1px solid var(--border);
   background: #fff;
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 0.95rem;
 }
 
 .site-nav {
   position: absolute;
   top: 72px;
   left: 0;
   right: 0;
   background: #fff;
   border-bottom: 1px solid var(--border);
   display: none;
   flex-direction: column;
   gap: 16px;
   padding: 18px 5%;
 }
 
 .site-nav ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .site-nav a {
   font-weight: 600;
 }
 
 body.nav-open .site-nav {
   display: flex;
 }
 
 .section {
   padding: 60px 0;
 }
 
 .section-muted {
   background: var(--brand-light);
 }
 
 .section-accent {
   background: #f2ebe2;
 }
 
 .section-dark {
   background: var(--brand-dark);
   color: #fff;
 }
 
 .section-dark a {
   color: #fff;
 }
 
 .hero {
   padding: 80px 0 70px;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   line-height: 1.15;
 }
 
 .lead {
   font-size: 1.05rem;
   color: var(--text-muted);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 999px;
   background: var(--brand-dark);
   color: #fff;
   border: 1px solid var(--brand-dark);
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--brand-dark);
 }
 
 .btn-light {
   background: #fff;
   color: var(--brand-dark);
   border-color: #fff;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.2em;
   font-size: 0.75rem;
   color: var(--brand-accent);
   font-weight: 700;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 240px;
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 24px;
   background: #fff;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .card h3 {
   font-size: 1.1rem;
 }
 
 .icon-circle {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: var(--brand-light);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split > div {
   flex: 1;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding-left: 18px;
 }
 
 .stats {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .stat {
   flex: 1 1 160px;
   padding: 18px;
   border-radius: 16px;
   background: #fff;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
 }
 
 .testimonial {
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .testimonial span {
   font-weight: 600;
   color: var(--brand-accent);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .feature-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .feature-item svg {
   flex-shrink: 0;
 }
 
 .accordion {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .accordion-item {
   border: 1px solid var(--border);
   border-radius: 14px;
   overflow: hidden;
   background: #fff;
 }
 
 .accordion-trigger {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   padding: 16px 18px;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .accordion-panel {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
   padding: 0 18px;
 }
 
 .accordion-panel p {
   padding-bottom: 16px;
   color: var(--text-muted);
 }
 
 .section-title {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-bottom: 26px;
 }
 
 .section-title h2 {
   font-size: 1.8rem;
 }
 
 .quote {
   font-size: 1.6rem;
   font-weight: 500;
   line-height: 1.4;
 }
 
 .comparison {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .comparison-card {
   flex: 1 1 220px;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 22px;
   background: #fff;
 }
 
 .comparison-card ul {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .info-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .info-card {
   flex: 1 1 240px;
   border-radius: 16px;
   background: #fff;
   border: 1px solid var(--border);
   padding: 20px;
 }
 
 .site-footer {
   background: #111417;
   color: #d9d9d9;
   padding: 50px 0;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-nav {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   list-style: none;
 }
 
 .footer-meta {
   display: flex;
   flex-direction: column;
   gap: 6px;
   color: #a9b0b8;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 0;
   right: 0;
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.is-visible {
   display: block;
 }
 
 .banner-inner {
   background: #fff;
   border-radius: 18px;
   box-shadow: var(--shadow);
   padding: 18px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .banner-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   display: none;
   z-index: 40;
   padding: 24px;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .modal-backdrop {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
 }
 
 .modal-content {
   position: relative;
   margin: auto;
   background: #fff;
   border-radius: 20px;
   padding: 26px;
   width: min(640px, 95%);
   display: flex;
   flex-direction: column;
   gap: 18px;
   z-index: 1;
 }
 
 .modal-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .icon-button {
   border: none;
   background: #f3f3f3;
   border-radius: 50%;
   width: 34px;
   height: 34px;
   cursor: pointer;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .cookie-option {
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .badge {
   display: inline-block;
   background: var(--brand-light);
   padding: 4px 10px;
   border-radius: 999px;
   font-size: 0.75rem;
 }
 
 .toggle {
   align-self: flex-start;
   border-radius: 999px;
   border: 1px solid var(--border);
   padding: 6px 14px;
   background: #fff;
   cursor: pointer;
 }
 
 .toggle[aria-pressed="true"] {
   background: var(--brand-dark);
   color: #fff;
   border-color: var(--brand-dark);
 }
 
 .modal-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 @media (min-width: 760px) {
   .nav-toggle {
     display: none;
   }
 
   .site-nav {
     position: static;
     display: flex;
     flex-direction: row;
     border: none;
     padding: 0;
   }
 
   .site-nav ul {
     flex-direction: row;
   }
 
   .header-inner {
     gap: 24px;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-content > div {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-start;
   }
 
   .banner-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 }
