 :root {
   color-scheme: light;
   --bg: #f7f5f2;
   --surface: #ffffff;
   --ink: #1f1f24;
   --muted: #5c5c67;
   --brand: #3e2b5a;
   --brand-light: #efeaf7;
   --accent: #d18f4b;
   --border: #e2ddd6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .site-header .container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 14px 20px;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.02em;
   font-size: 1.1rem;
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: var(--surface);
   color: var(--ink);
   padding: 8px 14px;
   border-radius: 999px;
   cursor: pointer;
 }
 
 .site-nav {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   position: absolute;
   right: 20px;
   top: 64px;
   min-width: 200px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
 }
 
 .site-nav a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-open .site-nav {
   display: flex;
 }
 
 .hero {
   background: var(--brand-light);
   padding: 64px 0;
 }
 
 .hero .container {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-badges {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section h2 {
   margin: 0 0 16px;
   font-size: 1.6rem;
 }
 
 .section p {
   margin: 0 0 16px;
   color: var(--muted);
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.highlight {
   border-color: var(--brand);
   background: #f4f0fa;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .feature {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .feature svg {
   width: 32px;
   height: 32px;
   flex: 0 0 auto;
   color: var(--accent);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 18px;
   border-radius: 16px;
   background: var(--surface);
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.4rem;
   color: var(--brand);
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--border);
 }
 
 .testimonial cite {
   display: block;
   margin-top: 12px;
   font-style: normal;
   font-weight: 600;
   color: var(--ink);
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   background: var(--brand-light);
   padding: 8px 14px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--border);
   background: var(--surface);
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .process-step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .process-step span {
   background: var(--brand);
   color: #fff;
   font-weight: 700;
   border-radius: 12px;
   padding: 6px 10px;
 }
 
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   padding: 10px 18px;
   border-radius: 999px;
   border: 1px solid var(--border);
   background: var(--surface);
   color: var(--ink);
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-primary {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 .btn-accent {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 .btn-ghost {
   background: transparent;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 16px;
   overflow: hidden;
   background: var(--surface);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px 18px;
   background: var(--surface);
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 18px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .cta-panel {
   background: var(--brand);
   color: #fff;
   border-radius: 24px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cta-panel p {
   color: #f2eef7;
 }
 
 .site-footer {
   background: #1a1623;
   color: #f2eef7;
   padding: 32px 0;
 }
 
 .site-footer .container {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 18px;
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
   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(20, 16, 26, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 50;
   padding: 20px;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-modal__content {
   background: var(--surface);
   border-radius: 20px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .toggle {
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 10px 16px;
   background: var(--surface);
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   font-weight: 600;
 }
 
 .toggle[aria-pressed="true"] {
   background: var(--brand-light);
   border-color: var(--brand);
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .info-block {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--border);
 }
 
 .price {
   font-weight: 700;
   color: var(--brand);
 }
 
 @media (min-width: 860px) {
   .menu-toggle {
     display: none;
   }
 
   .site-nav {
     display: flex;
     flex-direction: row;
     gap: 18px;
     position: static;
     border: none;
     box-shadow: none;
     padding: 0;
   }
 
   .nav-open .site-nav {
     display: flex;
   }
 
   .hero .container {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid .card {
     flex: 1 1 260px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1 1 220px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 240px;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .contact-grid .info-block {
     flex: 1 1 300px;
   }
 
   .site-footer .container {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-start;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 }
