 :root {
   --bg: #0f1014;
   --bg-soft: #181a22;
   --bg-accent: #222536;
   --text: #f4f6fb;
   --muted: #b6bccf;
   --brand: #ff4d6d;
   --brand-dark: #c5344f;
   --accent: #5ad6ff;
   --success: #5ed9a4;
   --warning: #ffb454;
   --shadow: 0 12px 28px rgba(10, 12, 20, 0.35);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   background: rgba(15, 16, 20, 0.92);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
   z-index: 30;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   padding: 1rem 0;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: lowercase;
   color: var(--text);
 }
 
 .menu-toggle {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.5rem 0.9rem;
   border-radius: 999px;
   border: 1px solid rgba(255, 255, 255, 0.15);
   background: var(--bg-accent);
   color: var(--text);
   cursor: pointer;
 }
 
 .site-nav {
   display: none;
   gap: 1.5rem;
   font-size: 0.95rem;
 }
 
 .site-nav a {
   color: var(--muted);
 }
 
 .site-nav a:hover,
 .site-nav a:focus {
   color: var(--text);
 }
 
 .hero {
   padding: 5rem 0 3rem;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.5rem);
   line-height: 1.1;
   margin: 0;
 }
 
 .hero p {
   max-width: 42rem;
   color: var(--muted);
 }
 
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--brand);
   color: #0f1014;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   border-color: rgba(255, 255, 255, 0.2);
   color: var(--text);
 }
 
 section {
   padding: 3.5rem 0;
 }
 
 .section-title {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   margin-bottom: 1.8rem;
 }
 
 .section-title h2 {
   font-size: clamp(1.6rem, 2.6vw, 2.4rem);
   margin: 0;
 }
 
 .section-title p {
   max-width: 28rem;
   color: var(--muted);
   margin: 0;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   padding: 1.5rem;
   border-radius: 1.2rem;
   background: var(--bg-soft);
   box-shadow: var(--shadow);
 }
 
 .feature-item svg {
   width: 42px;
   height: 42px;
   flex: 0 0 auto;
   color: var(--accent);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .card {
   padding: 1.6rem;
   border-radius: 1.2rem;
   background: var(--bg-accent);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .card p {
   color: var(--muted);
   margin: 0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   padding: 1.4rem;
   border-radius: 1rem;
   background: rgba(90, 214, 255, 0.12);
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .stat span {
   color: var(--muted);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 1.3rem;
 }
 
 .testimonial {
   padding: 1.6rem;
   border-radius: 1.2rem;
   background: var(--bg-soft);
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .testimonial strong {
   color: var(--accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .highlight {
   padding: 2rem;
   border-radius: 1.5rem;
   background: linear-gradient(135deg, rgba(255, 77, 109, 0.18), rgba(90, 214, 255, 0.12));
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   padding: 1.2rem;
   border-radius: 1rem;
   background: var(--bg-soft);
 }
 
 .comparison-row strong {
   color: var(--success);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   border-radius: 1rem;
   overflow: hidden;
   border: 1px solid rgba(255, 255, 255, 0.1);
   background: var(--bg-soft);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   background: transparent;
   border: none;
   color: var(--text);
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1rem;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .section-muted {
   background: var(--bg-soft);
 }
 
 .section-accent {
   background: var(--bg-accent);
 }
 
 .cta-panel {
   padding: 2.6rem;
   border-radius: 1.6rem;
   background: var(--brand);
   color: #120a0e;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cta-panel .btn {
   background: #120a0e;
   color: var(--text);
 }
 
 .footer {
   padding: 2.5rem 0;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   color: var(--muted);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   margin-top: 1rem;
 }
 
 .mobile-menu {
   position: fixed;
   inset: 0;
   background: rgba(15, 16, 20, 0.94);
   display: flex;
   flex-direction: column;
   padding: 2rem;
   gap: 1.5rem;
   z-index: 40;
 }
 
 .mobile-menu a {
   font-size: 1.2rem;
   color: var(--text);
 }
 
 .mobile-menu .close-menu {
   align-self: flex-end;
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: var(--text);
   padding: 0.4rem 0.9rem;
   border-radius: 999px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--bg-accent);
   color: var(--text);
   padding: 1.2rem;
   border-radius: 1rem;
   box-shadow: var(--shadow);
   width: min(920px, 92%);
   display: none;
   flex-direction: column;
   gap: 1rem;
   z-index: 50;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.8rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   background: rgba(15, 16, 20, 0.85);
   z-index: 60;
   padding: 1.5rem;
 }
 
 .cookie-modal .modal-content {
   background: var(--bg-soft);
   border-radius: 1.2rem;
   padding: 2rem;
   width: min(640px, 100%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .modal-content label {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   padding: 0.7rem 1rem;
   border-radius: 0.8rem;
   background: rgba(255, 255, 255, 0.06);
 }
 
 .modal-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.8rem;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .service-card {
   padding: 1.6rem;
   border-radius: 1.2rem;
   background: var(--bg-soft);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .service-card .price {
   color: var(--success);
   font-weight: 700;
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .info-block {
   padding: 1.4rem;
   background: var(--bg-accent);
   border-radius: 1rem;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.3rem 0.8rem;
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.12);
   color: var(--muted);
   font-size: 0.85rem;
 }
 
 @media (min-width: 768px) {
   .site-nav {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .feature-list,
   .cards,
   .testimonials,
   .stats,
   .service-grid,
   .comparison,
   .info-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-item,
   .card,
   .testimonial,
   .stat,
   .service-card,
   .comparison-row,
   .info-block {
     flex: 1 1 calc(50% - 1.2rem);
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > * {
     flex: 1;
   }
 }
 
 @media (min-width: 1024px) {
   .feature-item,
   .card,
   .testimonial,
   .stat,
   .service-card,
   .comparison-row,
   .info-block {
     flex: 1 1 calc(33% - 1.2rem);
   }
 }
