 :root {
   --bg: #f7f3fb;
   --surface: #ffffff;
   --ink: #2b2136;
   --muted: #6b5d77;
   --accent: #6f3fb0;
   --accent-2: #a584db;
   --accent-3: #e6dcf4;
   --warm: #f1e7d9;
   --border: #e2d9ee;
   --shadow: 0 10px 30px rgba(43, 33, 54, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", "Inter", system-ui, 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: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section--soft {
   background: var(--accent-3);
 }
 
 .section--warm {
   background: var(--warm);
 }
 
 .section--surface {
   background: var(--surface);
 }
 
 .eyebrow {
   font-size: 0.82rem;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   color: var(--accent);
   font-weight: 600;
 }
 
 .title {
   font-size: clamp(1.8rem, 3vw, 2.8rem);
   line-height: 1.2;
   margin: 12px 0 16px;
 }
 
 .subtitle {
   font-size: 1.05rem;
   color: var(--muted);
   max-width: 720px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
   box-shadow: var(--shadow);
 }
 
 .btn:hover,
 .btn:focus {
   transform: translateY(-1px);
 }
 
 .btn--ghost {
   background: transparent;
   color: var(--accent);
   border-color: var(--accent);
   box-shadow: none;
 }
 
 .btn--light {
   background: #fff;
   color: var(--accent);
   border-color: var(--border);
   box-shadow: none;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 20;
   background: rgba(247, 243, 251, 0.98);
   border-bottom: 1px solid var(--border);
   backdrop-filter: blur(8px);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
   border-radius: 12px;
   background: linear-gradient(135deg, var(--accent), var(--accent-2));
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 0.9rem;
   font-weight: 700;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 14px;
   padding: 16px;
   background: var(--surface);
   border-radius: 16px;
   box-shadow: var(--shadow);
   position: absolute;
   right: 4vw;
   top: 68px;
   width: min(240px, 84vw);
 }
 
 .nav-links a {
   color: var(--ink);
   font-weight: 600;
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .nav-toggle {
   background: none;
   border: 1px solid var(--border);
   padding: 8px 12px;
   border-radius: 999px;
   display: inline-flex;
   gap: 6px;
   align-items: center;
   font-weight: 600;
   color: var(--accent);
 }
 
 .nav-toggle span {
   width: 18px;
   height: 2px;
   background: var(--accent);
   display: block;
 }
 
 .hero {
   padding-top: 40px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: 24px;
   padding: 24px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   padding: 6px 12px;
   background: var(--accent-3);
   border-radius: 999px;
   font-size: 0.85rem;
   color: var(--accent);
   font-weight: 600;
 }
 
 .grid-cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 20px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card--bordered {
   border: 1px solid var(--border);
   box-shadow: none;
 }
 
 .icon-box {
   width: 44px;
   height: 44px;
   border-radius: 14px;
   background: var(--accent-3);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 18px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 6px;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.6rem;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .list li {
   display: flex;
   gap: 10px;
   align-items: flex-start;
 }
 
 .list li::before {
   content: "•";
   color: var(--accent);
   font-weight: 700;
 }
 
 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .process-step {
   background: var(--surface);
   border-radius: 16px;
   padding: 16px;
   border-left: 4px solid var(--accent);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-item {
   background: var(--surface);
   border-radius: 16px;
   padding: 16px;
   border: 1px dashed var(--accent);
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 20px;
   padding: 20px;
   border: 1px solid var(--border);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border-radius: 16px;
   border: 1px solid var(--border);
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px;
   background: none;
   border: none;
   font-weight: 600;
   color: var(--ink);
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .footer {
   background: var(--ink);
   color: #f9f5ff;
   padding: 40px 0;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-top {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer-bottom {
   margin-top: 24px;
   font-size: 0.9rem;
   color: #d7cde5;
 }
 
 .banner {
   position: fixed;
   bottom: 16px;
   right: 16px;
   left: 16px;
   background: var(--surface);
   border-radius: 18px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 50;
 }
 
 .banner.show {
   display: flex;
 }
 
 .banner-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(43, 33, 54, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
   padding: 20px;
 }
 
 .modal.show {
   display: flex;
 }
 
 .modal-card {
   background: var(--surface);
   border-radius: 22px;
   padding: 24px;
   max-width: 540px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px;
   border-radius: 12px;
   background: var(--accent-3);
 }
 
 .toggle-btn {
   border: 1px solid var(--accent);
   background: #fff;
   color: var(--accent);
   padding: 6px 14px;
   border-radius: 999px;
   font-weight: 600;
 }
 
 .toggle-btn[aria-pressed="true"] {
   background: var(--accent);
   color: #fff;
 }
 
 .contact-block {
   display: flex;
   flex-direction: column;
   gap: 8px;
   background: var(--surface);
   border-radius: 18px;
   padding: 18px;
   border: 1px solid var(--border);
 }
 
 .info-strip {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .table-like {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 14px;
   border-radius: 14px;
   background: var(--surface);
   border: 1px solid var(--border);
 }
 
 @media (min-width: 720px) {
   .nav-links {
     display: flex;
     flex-direction: row;
     position: static;
     padding: 0;
     background: none;
     box-shadow: none;
     width: auto;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .grid-cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 200px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > * {
     flex: 1;
   }
 
   .process-steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .process-step {
     flex: 1 1 220px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-item {
     flex: 1;
   }
 
   .footer-top {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .footer-links {
     flex-direction: row;
     gap: 24px;
   }
 
   .info-strip {
     flex-direction: row;
   }
 
   .table-like {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .table-row {
     flex: 1 1 240px;
   }
 }
