 :root {
   --bg: #0f0f12;
   --bg-soft: #17171d;
   --panel: #1f2028;
   --accent: #e8503a;
   --accent-dark: #c6402e;
   --text: #f6f4f2;
   --muted: #b7b2ab;
   --line: #2b2c36;
   --success: #2f9b6b;
   --warning: #d9a441;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 header {
   background: var(--bg);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 600;
   letter-spacing: 0.3px;
 }
 
 .brand svg {
   width: 36px;
   height: 36px;
 }
 
 nav .nav-links {
   display: none;
   gap: 18px;
   align-items: center;
 }
 
 .nav-links a {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--text);
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--panel);
   color: var(--text);
   padding: 10px 14px;
   border-radius: 999px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
 }
 
 .mobile-menu {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px 0 22px;
   border-top: 1px solid var(--line);
 }
 
 .mobile-menu a {
   padding: 10px 0;
   color: var(--muted);
 }
 
 .mobile-menu a:hover,
 .mobile-menu a:focus {
   color: var(--text);
 }
 
 .mobile-menu.is-open {
   display: flex;
 }
 
 .hero {
   padding: 64px 0 48px;
 }
 
 .hero .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: linear-gradient(120deg, #1f2028, #15161c);
   border-radius: 24px;
   padding: 28px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(232, 80, 58, 0.15);
   color: var(--accent);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.8rem;
   letter-spacing: 0.4px;
 }
 
 h1 {
   font-size: clamp(2rem, 4vw, 3.2rem);
   margin: 0;
 }
 
 h2 {
   font-size: clamp(1.6rem, 3vw, 2.4rem);
   margin: 0;
 }
 
 h3 {
   margin: 0;
   font-size: 1.1rem;
 }
 
 p {
   margin: 0;
   color: var(--muted);
 }
 
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .button {
   background: var(--accent);
   color: var(--text);
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   font-weight: 600;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 10px;
 }
 
 .button.secondary {
   background: transparent;
   border: 1px solid var(--line);
   color: var(--text);
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section.alt {
   background: var(--bg-soft);
 }
 
 .grid-cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--panel);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .price {
   color: var(--accent);
   font-weight: 600;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight {
   background: rgba(47, 155, 107, 0.12);
   border-left: 3px solid var(--success);
   padding: 18px;
   border-radius: 14px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .stat {
   background: var(--panel);
   padding: 18px;
   border-radius: 16px;
   border: 1px solid var(--line);
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
 }
 
 .stat span {
   color: var(--accent);
   font-weight: 600;
 }
 
 .testimonial {
   background: var(--panel);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .quote {
   font-size: 1.1rem;
   color: var(--text);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 16px;
   overflow: hidden;
   background: var(--panel);
 }
 
 .faq-question {
   width: 100%;
   padding: 16px 18px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   background: transparent;
   border: none;
   color: var(--text);
   cursor: pointer;
   font-size: 1rem;
   text-align: left;
 }
 
 .faq-answer {
   padding: 0 18px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   background: var(--panel);
 }
 
 .comparison-row .labels {
   display: flex;
   flex-direction: column;
   gap: 6px;
   color: var(--muted);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .feature-item {
   display: flex;
   align-items: flex-start;
   gap: 12px;
 }
 
 .feature-item svg {
   width: 20px;
   height: 20px;
   color: var(--accent);
 }
 
 footer {
   background: var(--bg-soft);
   padding: 40px 0;
   border-top: 1px solid var(--line);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   right: 18px;
   left: 18px;
   background: var(--panel);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 14px;
   z-index: 30;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(10, 10, 12, 0.7);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 40;
 }
 
 .modal-backdrop.is-visible {
   display: flex;
 }
 
 .modal {
   background: var(--panel);
   border-radius: 20px;
   border: 1px solid var(--line);
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .modal .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   border: 1px solid var(--line);
   padding: 12px;
   border-radius: 14px;
 }
 
 .toggle-button {
   background: transparent;
   border: 1px solid var(--line);
   color: var(--text);
   padding: 6px 14px;
   border-radius: 999px;
   cursor: pointer;
 }
 
 .toggle-button.is-active {
   background: var(--accent);
   border-color: var(--accent);
 }
 
 .banner-note {
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 @media (min-width: 768px) {
   nav .nav-links {
     display: flex;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .mobile-menu {
     display: none !important;
   }
 
   .hero .hero-grid {
     flex-direction: row;
     align-items: stretch;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .grid-cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .testimonial {
     flex: 1 1 240px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1 1 0;
   }
 
   .comparison-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .comparison-row .labels {
     flex-direction: row;
     gap: 18px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-start;
   }
 }
