 :root {
   --bg: #f8f6f2;
   --ink: #1d1b19;
   --muted: #615b55;
   --primary: #8d2f23;
   --primary-dark: #6e241a;
   --accent: #d9b37d;
   --panel: #ffffff;
   --border: #e3ded6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 12px;
   background: var(--primary);
   color: #fff;
   padding: 8px 12px;
   border-radius: 999px;
   z-index: 1000;
 }
 
 .skip-link:focus {
   left: 12px;
 }
 
 header {
   background: var(--panel);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 200;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   font-size: 1.1rem;
   letter-spacing: 0.2px;
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-toggle {
   background: none;
   border: 1px solid var(--border);
   padding: 8px 12px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 nav {
   position: relative;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 10px;
   background: var(--panel);
   border: 1px solid var(--border);
   padding: 16px;
   border-radius: 16px;
   position: absolute;
   right: 0;
   top: calc(100% + 10px);
   min-width: 220px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
 }
 
 body.menu-open .nav-links {
   display: flex;
 }
 
 .nav-links a {
   padding: 8px 10px;
   border-radius: 10px;
   font-weight: 600;
 }
 
 .nav-links a:focus,
 .nav-links a:hover {
   background: var(--bg);
 }
 
 .hero {
   padding: 48px 0 32px;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   line-height: 1.2;
   margin: 0;
 }
 
 .hero p {
   color: var(--muted);
   margin: 0;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 10px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   cursor: pointer;
   transition: background 0.2s ease;
 }
 
 .btn-primary {
   background: var(--primary);
   color: #fff;
 }
 
 .btn-primary:hover,
 .btn-primary:focus {
   background: var(--primary-dark);
 }
 
 .btn-outline {
   background: transparent;
   border-color: var(--primary);
   color: var(--primary);
 }
 
 .section {
   padding: 40px 0;
 }
 
 .section-title {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 24px;
 }
 
 .section-title h2 {
   margin: 0;
   font-size: 1.8rem;
 }
 
 .section-title p {
   margin: 0;
   color: var(--muted);
 }
 
 .panel {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 24px;
 }
 
 .grid-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 20px;
   border-radius: 18px;
   border: 1px solid var(--border);
   background: #fff;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--bg);
   border: 1px solid var(--border);
   font-size: 0.9rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 18px;
   border-radius: 16px;
   background: #fff;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.4rem;
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison .card {
   background: var(--bg);
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .step {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .step span {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: var(--accent);
   font-weight: 700;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 14px;
   background: #fff;
 }
 
 .faq-button {
   width: 100%;
   background: none;
   border: none;
   text-align: left;
   padding: 16px;
   font-size: 1rem;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-panel {
   padding: 0 16px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-panel {
   display: block;
 }
 
 .highlight {
   background: var(--primary);
   color: #fff;
   border-radius: 24px;
   padding: 28px;
 }
 
 .highlight p {
   margin: 0 0 16px;
 }
 
 .footer {
   background: #151310;
   color: #dcd6ce;
   padding: 36px 0;
 }
 
 .footer a {
   color: #dcd6ce;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer small {
   color: #b7b1aa;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
   display: none;
   z-index: 300;
 }
 
 .cookie-banner.active {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 400;
 }
 
 .cookie-modal.active {
   display: flex;
 }
 
 .cookie-modal .panel {
   max-width: 520px;
 }
 
 .switch-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .switch {
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 6px 12px;
   font-weight: 600;
   background: var(--bg);
   cursor: pointer;
 }
 
 .switch[aria-checked="true"] {
   background: var(--accent);
 }
 
 .service-price {
   font-weight: 700;
   color: var(--primary);
 }
 
 .notice {
   padding: 12px 16px;
   border-left: 3px solid var(--primary);
   background: #fff;
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .badge {
   font-size: 0.85rem;
   letter-spacing: 0.3px;
   text-transform: uppercase;
   color: var(--primary);
 }
 
 @media (min-width: 900px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     position: static;
     border: none;
     padding: 0;
     box-shadow: none;
     gap: 18px;
     background: transparent;
   }
 
   body.menu-open .nav-links {
     display: flex;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
   }
 
   .hero h1 {
     font-size: 3rem;
   }
 
   .grid-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid-row .card,
   .grid-row .panel {
     flex: 1 1 calc(33% - 16px);
     min-width: 240px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .step {
     flex: 1 1 calc(50% - 12px);
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonials .card {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
