 :root {
   color-scheme: light;
   --bg: #f7f5f0;
   --surface: #ffffff;
   --ink: #1f1d1a;
   --muted: #5c574f;
   --accent: #e0772c;
   --accent-soft: #f6c9a5;
   --sage: #7a8b63;
   --sand: #efe6d9;
   --border: #e4ddd2;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .topbar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 600;
   letter-spacing: 0.4px;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
 }
 
 nav {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-links a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--accent);
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--border);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
   color: var(--ink);
 }
 
 .mobile-menu {
   display: none;
   padding: 12px 0 16px;
 }
 
 .mobile-menu.open {
   display: block;
 }
 
 .desktop-nav {
   display: none;
 }
 
 .hero {
   padding: 48px 0 36px;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(2.1rem, 4vw, 3rem);
   line-height: 1.15;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .hero-card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 20px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 10px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   font-size: 0.95rem;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--accent);
   border-color: var(--accent);
 }
 
 section {
   padding: 36px 0;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin-bottom: 14px;
 }
 
 .section-intro {
   color: var(--muted);
   margin-bottom: 24px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card span {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .highlight {
   background: var(--sand);
   border-radius: 20px;
   padding: 20px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 16px;
 }
 
 .stat strong {
   font-size: 1.5rem;
   display: block;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   background: var(--accent-soft);
   color: #5b2c10;
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .testimonial {
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 16px;
   border-radius: 12px;
 }
 
 .services-table {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .service-item {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 16px;
 }
 
 .service-item h3 {
   margin-bottom: 6px;
 }
 
 .price {
   color: var(--accent);
   font-weight: 600;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 14px;
   border: 1px solid var(--border);
   border-radius: 12px;
   background: var(--surface);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   background: none;
   border: none;
   padding: 14px 16px;
   font-size: 1rem;
   text-align: left;
 }
 
 .faq-answer {
   padding: 0 16px 14px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .info-block {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 16px;
 }
 
 .footer {
   background: var(--ink);
   color: #f5f2ec;
   padding: 32px 0;
   margin-top: 24px;
 }
 
 .footer a {
   color: #f5f2ec;
   opacity: 0.8;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   display: none;
   gap: 12px;
   z-index: 50;
 }
 
 .cookie-banner.show {
   display: flex;
   flex-direction: column;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 29, 26, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 16px;
   z-index: 60;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   width: min(520px, 92%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 12px;
   border: 1px solid var(--border);
   border-radius: 12px;
   background: var(--sand);
 }
 
 .toggle button {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 4px 12px;
 }
 
 @media (min-width: 760px) {
   .topbar {
     padding: 20px 0;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .desktop-nav {
     display: flex;
     gap: 22px;
   }
 
   nav {
     flex-direction: row;
     align-items: center;
     gap: 24px;
   }
 
   .mobile-menu {
     display: none !important;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > div {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 180px;
   }
 
   .services-table {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-item {
     flex: 1 1 300px;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1 1 240px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 220px;
   }
 
   .info-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .info-block {
     flex: 1 1 240px;
   }
 
   .footer-links {
     flex-direction: row;
     gap: 16px;
   }
 
   .cookie-actions {
     flex-direction: row;
     align-items: center;
   }
 }
