 :root {
   --bg: #f7f4ef;
   --surface: #ffffff;
   --ink: #1c1a17;
   --muted: #5a534a;
   --accent: #8f5b1f;
   --accent-dark: #6d4417;
   --line: #e6dfd5;
   --highlight: #efe6d8;
   --success: #2f6f4e;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img, svg {
   max-width: 100%;
   height: auto;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .header-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
   border-radius: 10px;
   background: var(--accent);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 700;
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--surface);
   padding: 8px 12px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
 }
 
 nav {
   position: relative;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   list-style: none;
   background: var(--surface);
   border: 1px solid var(--line);
   padding: 16px;
   border-radius: 12px;
   position: absolute;
   right: 0;
   top: 52px;
   min-width: 220px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .nav-links a:hover {
   color: var(--accent);
 }
 
 .hero {
   padding: 64px 0 48px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: 20px;
   padding: 28px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-card h1 {
   font-size: 2rem;
   line-height: 1.2;
 }
 
 .hero-card p {
   color: var(--muted);
 }
 
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 10px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   transition: 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .btn:hover {
   background: var(--accent-dark);
   border-color: var(--accent-dark);
 }
 
 .btn.secondary:hover {
   color: #fff;
   background: var(--accent);
 }
 
 section {
   padding: 56px 0;
 }
 
 .section-title {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-bottom: 24px;
 }
 
 .section-title span {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 1.4px;
   color: var(--muted);
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   padding: 24px;
   border-radius: 16px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
.icon {
  width: 36px;
  height: 36px;
}

 .card.highlight {
   background: var(--highlight);
   border-color: transparent;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   background: var(--surface);
   border: 1px solid var(--line);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 14px;
   padding: 18px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   font-size: 1.6rem;
 }
 
 .quote {
   background: var(--ink);
   color: #fff;
   padding: 32px;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .quote span {
   color: #f1dfc4;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 18px;
   border-radius: 10px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison .card {
   border-left: 5px solid var(--accent);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 14px;
   border: 1px solid var(--line);
   overflow: hidden;
 }
 
 .faq-question {
   background: transparent;
   border: none;
   width: 100%;
   text-align: left;
   padding: 16px 18px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 18px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .badge-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .badge {
   background: var(--surface);
   border: 1px dashed var(--line);
   padding: 14px 16px;
   border-radius: 12px;
 }
 
 .service-table {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-card {
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 22px;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
  list-style: none;
  padding-left: 0;
 }
 
.info-list div,
.info-list li {
   background: var(--surface);
   border-radius: 14px;
   padding: 16px;
   border: 1px solid var(--line);
 }
 
 footer {
   background: var(--ink);
   color: #f2ede6;
   padding: 32px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   font-size: 0.9rem;
 }
 
 .footer-links a:hover {
   color: #fff;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--surface);
   border-radius: 16px;
   padding: 16px;
   border: 1px solid var(--line);
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 40;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(28, 26, 23, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 50;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--highlight);
   padding: 12px 14px;
   border-radius: 12px;
 }
 
 .toggle-btn {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 6px 14px;
   cursor: pointer;
   font-weight: 600;
 }
 
 .toggle-btn.active {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     align-items: center;
     background: transparent;
     border: none;
     padding: 0;
     box-shadow: none;
     gap: 20px;
     min-width: auto;
   }
 
   .hero-grid {
     flex-direction: row;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .card-grid,
   .stats,
   .comparison,
   .timeline,
   .service-table {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .timeline-item,
   .service-card,
   .comparison .card {
     flex: 1;
     min-width: 240px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split > * {
     flex: 1;
   }
 
   .badge-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .badge {
     flex: 1;
     min-width: 220px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
