 :root {
   --bg: #f8f5f2;
   --ink: #1f1d1a;
   --muted: #5c5750;
   --brand: #8c3b5a;
   --brand-dark: #5d2338;
   --accent: #d1a26f;
   --panel: #ffffff;
   --soft: #efe7df;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   display: block;
   max-width: 100%;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   background: rgba(248, 245, 242, 0.95);
   border-bottom: 1px solid #e3d8cf;
   z-index: 50;
   backdrop-filter: blur(6px);
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 14px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   font-size: 0.95rem;
 }
 
 .brand svg {
   width: 28px;
   height: 28px;
 }
 
 .nav-links {
   display: none;
   gap: 20px;
   align-items: center;
 }
 
 .nav-links a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--ink);
 }
 
 .menu-toggle {
   border: 1px solid var(--muted);
   background: transparent;
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .mobile-nav {
   position: fixed;
   inset: 0 0 0 30%;
   background: var(--panel);
   transform: translateX(100%);
   transition: transform 0.3s ease;
   padding: 80px 24px 24px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   z-index: 60;
 }
 
 .mobile-nav.is-open {
   transform: translateX(0);
 }
 
 .mobile-nav a {
   font-size: 1.1rem;
   color: var(--ink);
 }
 
 .overlay {
   position: fixed;
   inset: 0;
   background: rgba(12, 10, 8, 0.45);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.3s ease;
   z-index: 55;
 }
 
 .overlay.is-open {
   opacity: 1;
   pointer-events: auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--soft);
 }
 
 .section-title {
   font-size: 1.8rem;
   margin: 0 0 16px;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 1.5px;
   font-size: 0.75rem;
   color: var(--brand);
   margin-bottom: 8px;
 }
 
 .hero {
   padding: 70px 0 50px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero h1 {
   font-size: 2.3rem;
   margin: 0 0 12px;
 }
 
 .hero p {
   color: var(--muted);
   max-width: 620px;
 }
 
 .cta-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   font-size: 0.95rem;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--brand);
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--panel);
   border-radius: 16px;
   padding: 20px;
   box-shadow: 0 10px 30px rgba(36, 20, 26, 0.08);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card-icon {
   width: 38px;
   height: 38px;
   border-radius: 12px;
   background: var(--soft);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .pillars {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .pillars li {
   list-style: none;
   padding: 12px 16px;
   border-left: 3px solid var(--accent);
   background: var(--panel);
   border-radius: 8px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stat {
   background: var(--panel);
   border-radius: 14px;
   padding: 18px;
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
   color: var(--brand-dark);
 }
 
 .quote {
   font-size: 1.2rem;
   font-weight: 600;
   margin: 0;
 }
 
 .testimonial {
   background: var(--panel);
   border-radius: 16px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .step-number {
   min-width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--brand);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--panel);
   border-radius: 12px;
   overflow: hidden;
   border: 1px solid #e5dbd1;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 16px 18px;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 18px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .services-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   background: var(--panel);
   padding: 16px;
   border-radius: 12px;
 }
 
 .info-block {
   background: var(--panel);
   border-radius: 16px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer {
   background: #161210;
   color: #f7f1eb;
   padding: 40px 0;
 }
 
 .footer a {
   color: #f7f1eb;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer-bottom {
   margin-top: 20px;
   font-size: 0.85rem;
   color: #d7c9bf;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 18px;
   right: 18px;
   background: var(--panel);
   border-radius: 16px;
   box-shadow: 0 20px 50px rgba(24, 14, 20, 0.2);
   padding: 18px;
   display: none;
   z-index: 80;
 }
 
 .cookie-banner.is-visible {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(18, 14, 12, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 90;
 }
 
 .modal.is-open {
   display: flex;
 }
 
 .modal-content {
   background: var(--panel);
   border-radius: 18px;
   padding: 24px;
   max-width: 560px;
   width: 100%;
 }
 
 .modal-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 16px;
 }
 
 .check-row {
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 8px 0;
 }
 
 .table {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   background: var(--panel);
   padding: 14px;
   border-radius: 12px;
 }
 
 .tag {
   display: inline-flex;
   padding: 4px 10px;
   border-radius: 999px;
   background: var(--soft);
   color: var(--muted);
   font-size: 0.8rem;
 }
 
 @media (min-width: 900px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .card-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .services-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 20px;
   }
 
   .cookie-banner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     max-width: 900px;
     margin: 0 auto;
   }
 
   .table-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
