 :root {
   --bg: #f6f2ea;
   --text: #2a2723;
   --muted: #6b625a;
   --accent: #c0673c;
   --accent-dark: #8d4b2e;
   --panel: #ffffff;
   --soft: #eee6d9;
   --sage: #3f5d50;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   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(--panel);
   border-bottom: 1px solid var(--soft);
   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.25rem;
   letter-spacing: 0.02em;
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--soft);
   padding: 0.45rem 0.9rem;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   background: var(--panel);
   position: absolute;
   top: 100%;
   right: 4%;
   padding: 1rem;
   border: 1px solid var(--soft);
   border-radius: 0.75rem;
   min-width: 190px;
   box-shadow: 0 18px 45px rgba(42, 39, 35, 0.12);
 }
 
 body.menu-open .nav-links {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--text);
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
   padding: 2rem 0 3rem;
 }
 
 section {
   padding: 1.2rem 0;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 1.6rem;
 }
 
 .hero .hero-card {
   background: var(--panel);
   padding: 2rem;
   border-radius: 1.4rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   box-shadow: 0 18px 40px rgba(42, 39, 35, 0.08);
 }
 
 .hero h1 {
   font-size: 2.2rem;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   background: var(--accent);
   color: #fff;
   padding: 0.7rem 1.4rem;
   border-radius: 999px;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent-dark);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 1.6rem;
 }
 
 .panel {
   background: var(--panel);
   padding: 1.6rem;
   border-radius: 1rem;
   box-shadow: 0 12px 30px rgba(42, 39, 35, 0.06);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .icon {
   width: 36px;
   height: 36px;
   flex: 0 0 auto;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .card {
   background: var(--panel);
   padding: 1.3rem;
   border-radius: 1rem;
   border: 1px solid var(--soft);
   display: flex;
   flex-direction: column;
   gap: 0.7rem;
 }
 
 .card strong {
   font-size: 1.1rem;
 }
 
 .stat-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--soft);
   padding: 1rem 1.3rem;
   border-radius: 0.9rem;
   display: flex;
   flex-direction: column;
   gap: 0.2rem;
 }
 
 .stat span {
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .quote {
   background: var(--sage);
   color: #fefaf4;
   padding: 2rem;
   border-radius: 1.3rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .timeline-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .timeline-item span {
   font-weight: 700;
   color: var(--accent-dark);
   min-width: 70px;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .service-card {
   border: 1px solid var(--soft);
   border-radius: 1rem;
   padding: 1.4rem;
   background: var(--panel);
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   background: var(--panel);
   padding: 1rem;
   border-radius: 0.9rem;
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
   border: 1px solid var(--soft);
 }
 
 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .process-step {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .process-step span {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .testimonial {
   background: var(--panel);
   padding: 1.4rem;
   border-radius: 1rem;
   border-left: 4px solid var(--accent);
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   background: var(--panel);
   border-radius: 0.9rem;
   border: 1px solid var(--soft);
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   padding: 1rem 1.2rem;
   font-weight: 600;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-item p {
   margin: 0;
   padding: 0 1.2rem 1rem;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open p {
   display: block;
 }
 
 .insight-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .insight {
   background: var(--soft);
   padding: 1.1rem;
   border-radius: 0.8rem;
 }
 
 .cta-panel {
   background: var(--accent);
   color: #fff;
   padding: 2rem;
   border-radius: 1.4rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .site-footer {
   background: var(--panel);
   padding: 2rem 0;
   border-top: 1px solid var(--soft);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--panel);
   border: 1px solid var(--soft);
   padding: 1rem 1.2rem;
   border-radius: 1rem;
   width: min(560px, 92%);
   box-shadow: 0 18px 40px rgba(42, 39, 35, 0.18);
   display: none;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(42, 39, 35, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal .modal-panel {
   background: var(--panel);
   border-radius: 1rem;
   padding: 1.8rem;
   width: min(560px, 95%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--soft);
   padding: 0.8rem 1rem;
   border-radius: 0.8rem;
 }
 
 .toggle button {
   border: 1px solid var(--accent-dark);
   background: transparent;
   padding: 0.35rem 0.8rem;
   border-radius: 999px;
   cursor: pointer;
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .toggle button[aria-pressed="true"] {
   background: var(--accent-dark);
   color: #fff;
 }
 
 @media (min-width: 768px) {
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     position: static;
     flex-direction: row;
     background: transparent;
     padding: 0;
     border: none;
     box-shadow: none;
     gap: 1.4rem;
   }
 
   body.menu-open .nav-links {
     display: flex;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero .hero-card {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .cards,
   .service-grid,
   .stat-grid,
   .insight-grid,
   .testimonials {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .service-card,
   .stat,
   .insight,
   .testimonial {
     flex: 1 1 240px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 240px;
   }
 
   .process-steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .process-step {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
