 :root {
   --bg: #0f1012;
   --bg-soft: #15171b;
   --panel: #1d2127;
   --accent: #cfa756;
   --accent-2: #88b06a;
   --text: #f2f2f2;
   --muted: #c7c7c7;
   --border: #2b313a;
   --danger: #c26d6d;
   --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
 }
 
 * {
   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,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   padding: 0 20px;
   margin: 0 auto;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 0;
   background: var(--accent);
   color: #0a0a0a;
   padding: 8px 12px;
   border-radius: 4px;
   z-index: 999;
 }
 
 .skip-link:focus {
   left: 20px;
 }
 
 .site-header {
   background: var(--bg-soft);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 600;
   letter-spacing: 0.2px;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--border);
   color: var(--text);
   padding: 8px 12px;
   border-radius: 6px;
 }
 
 .nav-menu {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 10px;
   padding: 16px;
   margin-top: 12px;
 }
 
 .nav-menu.is-open {
   display: flex;
 }
 
 .nav-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .nav-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #1a1a1a;
   font-weight: 600;
   gap: 8px;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--text);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section-alt {
   background: var(--bg-soft);
 }
 
 .section-accent {
   background: linear-gradient(135deg, #1b1f26, #111318);
 }
 
 .section-header {
   margin-bottom: 24px;
 }
 
 .section-header h2 {
   margin: 0 0 8px;
   font-size: 1.8rem;
 }
 
 .section-header p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero-card {
   background: var(--panel);
   border-radius: 16px;
   padding: 24px;
   box-shadow: var(--shadow);
   border: 1px solid var(--border);
 }
 
 .hero-title {
   font-size: 2.4rem;
   margin-bottom: 12px;
 }
 
 .tagline {
   color: var(--muted);
   margin: 0 0 20px;
 }
 
 .feature-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .feature-card {
   background: var(--panel);
   border-radius: 14px;
   padding: 18px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .feature-card h3 {
   margin: 0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   padding: 18px;
   border-radius: 12px;
   background: var(--panel);
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.6rem;
   display: block;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .quote {
   background: var(--panel);
   border-radius: 16px;
   padding: 24px;
   border: 1px solid var(--border);
   font-style: italic;
 }
 
 .list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .list li {
   margin-left: 18px;
 }
 
 .testimonial {
   background: var(--panel);
   border-left: 4px solid var(--accent);
   padding: 18px 20px;
   border-radius: 12px;
 }
 
 .testimonial cite {
   display: block;
   margin-top: 10px;
   color: var(--muted);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   background: transparent;
   border: none;
   color: var(--text);
   text-align: left;
   padding: 16px 18px;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.25s ease;
   padding: 0 18px;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   max-height: 320px;
   padding-bottom: 16px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: var(--panel);
   padding: 16px;
   border-radius: 12px;
   border: 1px solid var(--border);
 }
 
 .comparison-row span {
   color: var(--muted);
 }
 
 .site-footer {
   background: var(--bg-soft);
   border-top: 1px solid var(--border);
   padding: 32px 0;
   margin-top: 40px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .footer-meta {
   margin-top: 16px;
   color: var(--muted);
   font-size: 0.9rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 16px;
   z-index: 100;
   display: none;
   box-shadow: var(--shadow);
 }
 
 .cookie-banner.is-visible {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   background: rgba(0, 0, 0, 0.6);
   z-index: 200;
 }
 
 .modal.is-open {
   display: flex;
 }
 
 .modal-content {
   background: var(--panel);
   border-radius: 16px;
   padding: 24px;
   width: 90%;
   max-width: 520px;
   border: 1px solid var(--border);
   box-shadow: var(--shadow);
 }
 
 .modal-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 16px;
 }
 
 .checkbox-row {
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 10px 0;
 }
 
 .pill {
   display: inline-flex;
   padding: 4px 10px;
   border-radius: 999px;
   background: var(--bg-soft);
   border: 1px solid var(--border);
   font-size: 0.85rem;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-menu {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 20px;
     background: transparent;
     border: none;
     padding: 0;
     margin-top: 0;
   }
 
   .nav-links {
     flex-direction: row;
     gap: 16px;
   }
 
   .nav-actions {
     flex-direction: row;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .feature-row,
   .cards,
   .stats,
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-card,
   .card,
   .stat,
   .comparison-row {
     flex: 1 1 240px;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .cookie-banner {
     left: auto;
     right: 24px;
     max-width: 420px;
   }
 
   .cookie-actions,
   .modal-actions {
     flex-direction: row;
   }
 }
