 :root {
   --bg: #f7f3ef;
   --text: #2a2a2a;
   --muted: #6b6b6b;
   --accent: #7f5f4a;
   --accent-dark: #5f4433;
   --light: #ffffff;
   --line: #e3d9d0;
 }
 
 * {
   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%;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   background: var(--light);
   border-bottom: 1px solid var(--line);
   z-index: 20;
 }
 
 .nav-wrapper {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .logo {
   font-size: 1.3rem;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .menu-toggle {
   background: var(--accent);
   color: var(--light);
   border: none;
   padding: 10px 14px;
   border-radius: 6px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   position: absolute;
   top: 68px;
   right: 20px;
   background: var(--light);
   padding: 20px;
   border-radius: 12px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
   min-width: 220px;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .nav-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
 }
 
 body.nav-open .nav-links {
   display: flex;
 }
 
 body.nav-open .nav-overlay {
   display: block;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section-alt {
   background: var(--light);
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 16px;
 }
 
 .section-subtitle {
   color: var(--muted);
   margin: 0 0 24px;
 }
 
 .hero {
   padding: 72px 0;
   background: linear-gradient(135deg, #f7f3ef 0%, #f0e6db 100%);
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   margin: 0;
 }
 
 .hero p {
   margin: 0;
   color: var(--muted);
 }
 
 .button-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 6px;
   font-weight: 600;
   border: 2px solid var(--accent);
   color: var(--accent);
   background: transparent;
   cursor: pointer;
 }
 
 .btn.primary {
   background: var(--accent);
   color: var(--light);
 }
 
 .card-grid,
 .feature-grid,
 .stats-row,
 .testimonial-row,
 .faq-grid,
 .process-steps,
 .comparison-grid,
 .contact-grid,
 .team-grid,
 .insight-grid,
 .values-row {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card,
 .feature-card,
 .stat-card,
 .testimonial,
 .faq-item,
 .process-step,
 .comparison-card,
 .contact-card,
 .team-card,
 .insight-card,
 .value-card {
   background: var(--light);
   padding: 24px;
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .highlight-panel {
   background: #fff6ee;
   border-left: 4px solid var(--accent);
   padding: 24px;
   border-radius: 10px;
 }
 
 .icon {
   width: 40px;
   height: 40px;
   margin-bottom: 12px;
 }
 
 .stats-row .stat-card h3 {
   font-size: 2rem;
   margin: 0 0 8px;
 }
 
 .testimonial p {
   margin: 0 0 14px;
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   border: none;
   background: none;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-item .faq-answer {
   margin-top: 12px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .comparison-card {
   border: 2px solid transparent;
 }
 
 .comparison-card.emphasis {
   border-color: var(--accent);
 }
 
 .footer {
   background: #1f1a16;
   color: #f0e6db;
   padding: 40px 0;
 }
 
 .footer .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer a {
   color: inherit;
 }
 
 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: #1f1a16;
   color: #f0e6db;
   padding: 16px;
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.active {
   display: block;
 }
 
 .cookie-banner .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 40;
 }
 
 .cookie-modal.active {
   display: flex;
 }
 
 .cookie-modal .modal-content {
   background: var(--light);
   border-radius: 16px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
 }
 
 .cookie-preferences {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin: 16px 0;
 }
 
 .pref-toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: #f3ede7;
   border-radius: 10px;
   padding: 12px 14px;
 }
 
 .pref-toggle button {
   border: 2px solid var(--accent);
   background: transparent;
   color: var(--accent);
   padding: 6px 12px;
   border-radius: 999px;
   cursor: pointer;
 }
 
 .pref-toggle button.active {
   background: var(--accent);
   color: var(--light);
 }
 
 .section-cta {
   background: var(--accent);
   color: var(--light);
 }
 
 .section-cta .btn {
   border-color: var(--light);
   color: var(--light);
 }
 
 .section-cta .btn.primary {
   background: var(--light);
   color: var(--accent);
 }
 
 .contact-grid .contact-card strong {
   display: block;
   margin-bottom: 6px;
 }
 
 @media (min-width: 768px) {
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     position: static;
     flex-direction: row;
     gap: 24px;
     background: transparent;
     box-shadow: none;
     padding: 0;
     min-width: auto;
   }
 
   .nav-overlay {
     display: none;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .button-row {
     flex-direction: row;
   }
 
   .card-grid,
   .feature-grid,
   .stats-row,
   .testimonial-row,
   .faq-grid,
   .process-steps,
   .comparison-grid,
   .contact-grid,
   .team-grid,
   .insight-grid,
   .values-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .feature-card,
   .stat-card,
   .testimonial,
   .faq-item,
   .process-step,
   .comparison-card,
   .contact-card,
   .team-card,
   .insight-card,
   .value-card {
     flex: 1 1 280px;
   }
 
   .footer .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-banner .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
