 :root {
   --bg: #f7f4ef;
   --surface: #ffffff;
   --ink: #1f1a16;
   --muted: #6b6158;
   --accent: #b07a54;
   --accent-dark: #8e5f3f;
   --soft: #efe6dc;
   --line: #e3d7cb;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section.alt {
   background: var(--soft);
 }
 
 .eyebrow {
   font-size: 0.85rem;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: var(--accent-dark);
   margin-bottom: 8px;
 }
 
 h1, h2, h3 {
   line-height: 1.2;
   margin: 0 0 16px 0;
 }
 
 h1 {
   font-size: 2.2rem;
 }
 
 h2 {
   font-size: 1.8rem;
 }
 
 h3 {
   font-size: 1.25rem;
 }
 
 p {
   margin: 0 0 16px 0;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 18px;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   border: 1px solid transparent;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border-color: var(--accent);
 }
 
 .btn:focus {
   outline: 3px solid rgba(176, 122, 84, 0.35);
   outline-offset: 2px;
 }
 
 .btn:hover {
   transform: translateY(-1px);
   background: var(--accent-dark);
 }
 
 .cta-row {
   margin-top: 18px;
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 20;
   background: var(--surface);
   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;
 }
 
 .brand img {
   width: 34px;
   height: 34px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px 0;
 }
 
 .nav-links a {
   color: var(--muted);
   font-weight: 600;
 }
 
 .nav-links a:hover {
   color: var(--ink);
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--line);
   padding: 8px 12px;
   border-radius: 8px;
   font-weight: 600;
 }
 
 .nav-toggle:focus {
   outline: 3px solid rgba(176, 122, 84, 0.35);
   outline-offset: 2px;
 }
 
 .mobile-panel {
   display: none;
   background: var(--surface);
   border-top: 1px solid var(--line);
   padding: 0 0 16px 0;
 }
 
 .mobile-panel.open {
   display: block;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .feature-grid,
 .service-grid,
 .stats-row,
 .testimonial-row,
 .values-row,
 .faq-list,
 .comparison-row,
 .team-row,
 .insights-row,
 .case-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.icon {
   align-items: flex-start;
 }
 
 .card.icon img {
   width: 42px;
   height: 42px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--surface);
   border: 1px solid var(--line);
   font-size: 0.9rem;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 14px;
   padding: 18px;
   border-left: 4px solid var(--accent);
 }
 
 .testimonial {
   background: var(--surface);
   padding: 22px;
   border-radius: 18px;
   border: 1px solid var(--line);
 }
 
 .quote {
   font-size: 1.1rem;
   color: var(--ink);
 }
 
 .faq-item {
   border-radius: 14px;
   border: 1px solid var(--line);
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px;
   background: transparent;
   border: none;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 16px 16px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   align-items: center;
 }
 
 .badge {
   display: flex;
   align-items: center;
   gap: 10px;
   background: var(--surface);
   padding: 10px 14px;
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .comparison-card {
   border: 1px dashed var(--line);
   border-radius: 16px;
   padding: 18px;
   background: #fff8f1;
 }
 
 .footer {
   background: #1f1a16;
   color: #efe6dc;
   padding: 36px 0;
 }
 
 .footer a {
   color: #efe6dc;
 }
 
 .footer .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   display: none;
   z-index: 40;
 }
 
 .cookie-banner.open {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(31, 26, 22, 0.45);
   display: none;
   z-index: 50;
   align-items: center;
   justify-content: center;
   padding: 20px;
 }
 
 .modal-backdrop.open {
   display: flex;
 }
 
 .modal {
   background: var(--surface);
   border-radius: 18px;
   max-width: 520px;
   width: 100%;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .modal-actions {
   margin-top: 16px;
   display: flex;
   gap: 10px;
   flex-wrap: wrap;
 }
 
 .toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 0;
   border-bottom: 1px solid var(--line);
 }
 
 .toggle:last-child {
   border-bottom: none;
 }
 
 .toggle button {
   border: 1px solid var(--line);
   background: var(--soft);
   padding: 8px 12px;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .highlight-panel {
   background: #fff8f1;
   border-radius: 20px;
   padding: 22px;
   border: 1px solid #f1d8c1;
 }
 
 .divider {
   display: flex;
   justify-content: center;
   margin: 10px 0 30px 0;
 }
 
 @media (min-width: 768px) {
   h1 {
     font-size: 2.7rem;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 18px;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .mobile-panel {
     display: none !important;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .feature-grid,
   .service-grid,
   .stats-row,
   .testimonial-row,
   .values-row,
   .faq-list,
   .comparison-row,
   .team-row,
   .insights-row,
   .case-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-grid .card,
   .service-grid .card,
   .testimonial-row .testimonial,
   .values-row .card,
   .comparison-row .comparison-card,
   .team-row .card,
   .insights-row .card,
   .case-row .card {
     flex: 1 1 280px;
   }
 
   .stats-row .stat {
     flex: 1 1 220px;
   }
 
   .footer .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 
   .cookie-actions {
     flex-direction: row;
     align-items: center;
   }
 }
