 :root {
   --bg: #f7f4ef;
   --text: #1f1b16;
   --muted: #5f544a;
   --primary: #7a4b2b;
   --secondary: #a8764f;
   --accent: #2f6b66;
   --card: #ffffff;
   --border: #e4ddd4;
   --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
   --radius: 14px;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   font-family: "Segoe UI", "Inter", "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%;
   display: block;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: #f0ebe4;
 }
 
 .section.highlight {
   background: var(--card);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
 }
 
 .eyebrow {
   font-size: 0.9rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: var(--accent);
   margin-bottom: 12px;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
 }
 
 h1 {
   font-size: clamp(2.1rem, 3vw, 3rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 2.4vw, 2.2rem);
   margin-bottom: 16px;
 }
 
 h3 {
   font-size: 1.2rem;
   margin-bottom: 10px;
 }
 
 p {
   color: var(--muted);
   margin-bottom: 16px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--primary);
   color: #fff;
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   border-color: var(--primary);
   color: var(--primary);
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-1px);
   background: var(--secondary);
 }
 
 .btn.secondary:hover,
 .btn.secondary:focus-visible {
   background: #f2e6db;
 }
 
 header {
   background: var(--card);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-links {
   display: none;
   gap: 18px;
   font-weight: 600;
 }
 
 .nav-links a {
   padding: 8px 10px;
   border-radius: 999px;
 }
 
 .nav-links a:hover,
 .nav-links a:focus-visible {
   background: #f2e6db;
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: #fff;
   padding: 8px 12px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .mobile-menu {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px;
   border-top: 1px solid var(--border);
   background: #fff;
 }
 
 .mobile-menu.open {
   display: flex;
 }
 
 .hero {
   padding: 80px 0 56px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--card);
   padding: 28px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .flex {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--card);
   padding: 22px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   border: 1px solid var(--border);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 36px;
   height: 36px;
   border-radius: 10px;
   background: #f2e6db;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--primary);
   flex-shrink: 0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--card);
   padding: 18px;
   border-radius: var(--radius);
   border: 1px solid var(--border);
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
   color: var(--primary);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .testimonial {
   background: #fff;
   padding: 22px;
   border-left: 4px solid var(--accent);
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   background: var(--card);
   padding: 20px;
   border-radius: var(--radius);
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .service-card span {
   font-weight: 700;
   color: var(--accent);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 16px;
 }
 
 .comparison-row strong {
   color: var(--primary);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: var(--radius);
   overflow: hidden;
   background: #fff;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px;
   background: #fff;
   border: none;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .quote {
   font-size: 1.2rem;
   color: var(--text);
   font-style: italic;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding-left: 16px;
 }
 
 .list li {
   color: var(--muted);
 }
 
 footer {
   background: #1f1b16;
   color: #f2e6db;
   padding: 40px 0;
 }
 
 footer a {
   color: #f2e6db;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 16px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 30;
   padding: 16px;
 }
 
 .modal-backdrop.show {
   display: flex;
 }
 
 .modal {
   background: #fff;
   border-radius: var(--radius);
   padding: 24px;
   width: min(560px, 100%);
   box-shadow: var(--shadow);
 }
 
 .modal h3 {
   margin-bottom: 12px;
 }
 
 .modal .prefs {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin: 16px 0;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: #f2e6db;
   color: var(--primary);
   font-weight: 600;
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .cards,
   .stats,
   .testimonials,
   .service-grid,
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .testimonial,
   .service-card,
   .comparison-row {
     flex: 1 1 calc(50% - 12px);
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
 
 @media (min-width: 1024px) {
   .card,
   .stat,
   .testimonial,
   .service-card,
   .comparison-row {
     flex: 1 1 calc(33.333% - 12px);
   }
 }
