 :root {
   --ink: #1a1f2b;
   --muted: #5a6170;
   --brand: #7a4cc4;
   --brand-dark: #4b2a82;
   --accent: #f0b24d;
   --bg: #f7f5fb;
   --panel: #ffffff;
   --line: #e6e1f2;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section-tight {
   padding: 40px 0;
 }
 
 .section-alt {
   background: var(--panel);
 }
 
 .section-muted {
   background: #f0edf7;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.78rem;
   color: var(--brand-dark);
 }
 
 .lead {
   font-size: 1.12rem;
   color: var(--muted);
 }
 
 .button-row {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   margin-top: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   gap: 8px;
 }
 
 .btn-outline {
   background: transparent;
   color: var(--brand);
 }
 
 .btn-ghost {
   background: transparent;
   border-color: transparent;
   color: var(--brand-dark);
 }
 
 header {
   background: var(--panel);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
   gap: 16px;
 }
 
 .logo {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .logo-mark {
   width: 34px;
   height: 34px;
 }
 
 .nav-menu {
   display: flex;
   align-items: center;
   gap: 18px;
 }
 
 .nav-menu a {
   color: var(--muted);
   font-weight: 600;
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--line);
   border-radius: 10px;
   padding: 8px 10px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }
 
 .nav-overlay {
   display: none;
 }
 
 @media (max-width: 860px) {
   .nav-menu {
     position: fixed;
     top: 0;
     right: 0;
     height: 100vh;
     width: min(320px, 82vw);
     background: var(--panel);
     flex-direction: column;
     align-items: flex-start;
     padding: 90px 24px 24px;
     box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
     transform: translateX(100%);
     transition: transform 0.3s ease;
     z-index: 20;
   }
 
   .nav-menu.open {
     transform: translateX(0);
   }
 
   .nav-overlay {
     display: block;
     position: fixed;
     inset: 0;
     background: rgba(20, 20, 30, 0.35);
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.3s ease;
     z-index: 15;
   }
 
   .nav-overlay.open {
     opacity: 1;
     pointer-events: all;
   }
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--panel);
   border-radius: 20px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 @media (min-width: 900px) {
   .hero,
   .split {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero > * {
     flex: 1;
   }
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 @media (min-width: 780px) {
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 250px;
   }
 }
 
 .card {
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.highlight {
   background: #f5f0ff;
   border-color: #dfd2ff;
 }
 
 .icon-badge {
   width: 48px;
   height: 48px;
   border-radius: 14px;
   background: #efe9fb;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .feature-item span {
   font-weight: 600;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 @media (min-width: 720px) {
   .stats {
     flex-direction: row;
   }
 }
 
 .stat {
   background: var(--panel);
   padding: 22px;
   border-radius: 16px;
   border: 1px solid var(--line);
   flex: 1;
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
 }
 
 .quote {
   background: var(--brand-dark);
   color: #fff;
   padding: 36px;
   border-radius: 20px;
 }
 
 .testimonial {
   background: var(--panel);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 @media (min-width: 760px) {
   .testimonials {
     flex-direction: row;
   }
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: #efe9fb;
   color: var(--brand-dark);
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .process-step {
   border-left: 3px solid var(--brand);
   padding-left: 16px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 @media (min-width: 820px) {
   .comparison {
     flex-direction: row;
   }
 }
 
 .comparison-card {
   flex: 1;
   background: var(--panel);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 14px;
   overflow: hidden;
   background: var(--panel);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 16px 18px;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .faq-answer {
   max-height: 0;
   overflow: hidden;
   padding: 0 18px;
   color: var(--muted);
   transition: max-height 0.3s ease;
 }
 
 .faq-item.open .faq-answer {
   max-height: 240px;
   padding-bottom: 16px;
 }
 
 .faq-item.open .faq-question::after {
   content: "−";
 }
 
 .faq-question::after {
   content: "+";
   color: var(--brand);
   font-size: 1.1rem;
 }
 
 .services-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 @media (min-width: 780px) {
   .services-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 }
 
 .service-card {
   flex: 1 1 260px;
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .footer {
   background: #171624;
   color: #fff;
   padding: 50px 0;
 }
 
 .footer a {
   color: #fff;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 @media (min-width: 720px) {
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 18px;
   }
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(10, 10, 20, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 40;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-dialog {
   background: var(--panel);
   border-radius: 18px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 12px 14px;
 }
 
 .toggle {
   border: 1px solid var(--brand);
   padding: 6px 12px;
   border-radius: 999px;
   background: #efe9fb;
   color: var(--brand-dark);
   font-weight: 600;
 }
 
 .toggle[data-enabled="false"] {
   background: transparent;
   color: var(--muted);
   border-color: var(--line);
 }
 
 .notice {
   background: #efe9fb;
   border-radius: 14px;
   padding: 16px;
   border: 1px solid #e0d6ff;
 }
 
 .badge-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .table {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 14px;
   background: var(--panel);
 }
 
 @media (min-width: 760px) {
   .table-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
