 :root {
   --bg: #0f1114;
   --bg-muted: #171a1f;
   --panel: #1e232b;
   --text: #f2f4f7;
   --text-muted: #c1c7d0;
   --accent: #c9a46b;
   --accent-dark: #9e7d4d;
   --border: #2b313b;
   --shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 ul {
   list-style: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1200px, 92%);
   margin: 0 auto;
 }
 
 header {
   position: sticky;
   top: 0;
   z-index: 50;
   background: rgba(15, 17, 20, 0.92);
   backdrop-filter: blur(10px);
   border-bottom: 1px solid var(--border);
 }
 
 .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.08em;
   text-transform: uppercase;
 }
 
 .brand svg {
   width: 28px;
   height: 28px;
   fill: var(--accent);
 }
 
 .nav-toggle {
   background: none;
   border: 1px solid var(--border);
   color: var(--text);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.95rem;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 14px;
   width: 100%;
 }
 
 .nav-links a {
   padding: 8px 12px;
   border-radius: 999px;
   color: var(--text-muted);
   transition: background 0.2s ease, color 0.2s ease;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   background: var(--bg-muted);
   color: var(--text);
 }
 
 .nav-links.is-open {
   display: flex;
 }
 
 .hero {
   padding: 70px 0 50px;
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.6rem);
   line-height: 1.15;
 }
 
 .hero p {
   font-size: 1.1rem;
   color: var(--text-muted);
 }
 
 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   color: var(--bg);
   background: var(--accent);
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn:hover,
 .btn:focus {
   background: var(--accent-dark);
   transform: translateY(-1px);
 }
 
 .btn-outline {
   background: transparent;
   color: var(--accent);
 }
 
 .btn-outline:hover,
 .btn-outline:focus {
   background: var(--accent);
   color: var(--bg);
 }
 
 section {
   padding: 56px 0;
 }
 
 .section-title {
   font-size: clamp(1.6rem, 3vw, 2.4rem);
   margin-bottom: 16px;
 }
 
 .section-intro {
   color: var(--text-muted);
   max-width: 760px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 26px;
 }
 
 .card {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   box-shadow: var(--shadow);
 }
 
 .card h3 {
   font-size: 1.2rem;
 }
 
 .card p {
   color: var(--text-muted);
 }
 
 .badge {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(201, 164, 107, 0.2);
   color: var(--accent);
   font-size: 0.85rem;
   width: fit-content;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin-top: 20px;
 }
 
 .feature-item {
   display: flex;
   gap: 14px;
   align-items: flex-start;
   background: var(--bg-muted);
   padding: 16px;
   border-radius: 14px;
   border: 1px solid var(--border);
 }
 
 .feature-item svg {
   width: 26px;
   height: 26px;
   fill: var(--accent);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 24px;
 }
 
 .stat {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: var(--panel);
   padding: 18px;
   border-radius: 14px;
   border: 1px solid var(--border);
 }
 
 .stat span {
   color: var(--text-muted);
 }
 
 .testimonial {
   border-left: 3px solid var(--accent);
   padding: 18px;
   background: var(--bg-muted);
   border-radius: 12px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .quote {
   font-style: italic;
   color: var(--text-muted);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 24px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 16px;
   border-radius: 16px;
   border: 1px solid var(--border);
   background: var(--panel);
 }
 
 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .step {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   padding: 16px;
   border-radius: 14px;
   border: 1px solid var(--border);
   background: var(--bg-muted);
 }
 
 .step-number {
   background: var(--accent);
   color: var(--bg);
   width: 32px;
   height: 32px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .faq {
   margin-top: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 14px;
   background: var(--panel);
 }
 
 .faq-button {
   width: 100%;
   text-align: left;
   padding: 16px;
   background: none;
   border: none;
   color: var(--text);
   font-size: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
 }
 
 .faq-content {
   display: none;
   padding: 0 16px 16px;
   color: var(--text-muted);
 }
 
 .faq-item.is-open .faq-content {
   display: block;
 }
 
 .faq-indicator {
   font-size: 1.2rem;
   color: var(--accent);
 }
 
 .highlight-panel {
   background: linear-gradient(135deg, rgba(201, 164, 107, 0.15), rgba(15, 17, 20, 0.2));
   border: 1px solid var(--accent);
   border-radius: 22px;
   padding: 28px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   background: var(--bg-muted);
   border: 1px solid var(--border);
   border-radius: 999px;
   padding: 6px 14px;
   color: var(--text-muted);
   font-size: 0.9rem;
 }
 
 footer {
   padding: 40px 0 60px;
   border-top: 1px solid var(--border);
   background: #0b0d10;
 }
 
 .footer-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   color: var(--text-muted);
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   inset: auto 16px 16px 16px;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 18px;
   display: none;
   flex-direction: column;
   gap: 14px;
   box-shadow: var(--shadow);
   z-index: 80;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(7, 7, 9, 0.7);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 90;
   padding: 20px;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--panel);
   border-radius: 18px;
   padding: 24px;
   border: 1px solid var(--border);
   max-width: 560px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 16px;
   padding: 12px;
   border: 1px solid var(--border);
   border-radius: 12px;
   background: var(--bg-muted);
 }
 
 .toggle-button {
   border: 1px solid var(--accent);
   background: transparent;
   color: var(--accent);
   padding: 6px 14px;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .toggle-button.is-active {
   background: var(--accent);
   color: var(--bg);
 }
 
 .table {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 20px;
 }
 
 .table-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 14px;
   border: 1px solid var(--border);
   border-radius: 14px;
   background: var(--bg-muted);
 }
 
 .notice {
   color: var(--text-muted);
   font-size: 0.95rem;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     background: none;
     border: none;
     padding: 0;
     width: auto;
   }
 
   .hero-content {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .hero-text {
     flex: 1.2;
   }
 
   .hero-visual {
     flex: 1;
     display: flex;
     justify-content: flex-end;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 220px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .process-steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .step {
     flex: 1 1 240px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > div {
     flex: 1;
   }
 
   .footer-content {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-start;
   }
 
   .cookie-banner {
     inset: auto 32px 32px auto;
     width: 380px;
   }
 }
