 :root {
   --color-primary: #1f3a5f;
   --color-secondary: #f29f05;
   --color-accent: #3ba99c;
   --color-dark: #1b1b1b;
   --color-light: #f7f4ef;
   --color-muted: #6b7280;
   --color-border: #e4e1db;
   --radius: 18px;
   --shadow: 0 12px 30px rgba(31, 58, 95, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--color-dark);
   background: #ffffff;
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: #fff;
   border-bottom: 1px solid var(--color-border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 0.5px;
 }
 
 .menu-toggle {
   border: 1px solid var(--color-border);
   background: #fff;
   border-radius: 12px;
   padding: 8px 12px;
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
   cursor: pointer;
 }
 
 .menu-toggle svg {
   width: 22px;
   height: 22px;
 }
 
 .primary-nav {
   position: relative;
 }
 
 .nav-links {
   list-style: none;
   margin: 0;
   padding: 12px 0 0;
   display: flex;
   flex-direction: column;
   gap: 12px;
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--color-primary);
 }
 
 body.nav-open .nav-links {
   max-height: 320px;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--color-light);
 }
 
 .section.highlight {
   background: var(--color-primary);
   color: #fff;
 }
 
 .section-header {
   margin-bottom: 24px;
 }
 
 .section-header h2 {
   margin: 0 0 8px;
   font-size: 1.8rem;
 }
 
 .section-header p {
   margin: 0;
   color: var(--color-muted);
 }
 
 .highlight .section-header p,
 .highlight .section-header h2 {
   color: #fff;
 }
 
 .hero {
   padding: 80px 0 64px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--color-light);
   border-radius: var(--radius);
   padding: 28px;
   box-shadow: var(--shadow);
 }
 
 .hero h1 {
   margin: 0 0 16px;
   font-size: 2.3rem;
 }
 
 .hero p {
   margin: 0 0 20px;
   color: var(--color-muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--color-secondary);
   color: #1b1b1b;
   font-weight: 700;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   border-color: currentColor;
   color: inherit;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }

 .button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 20px;
 }
 
 .tag {
   padding: 6px 12px;
   border-radius: 999px;
   border: 1px solid var(--color-border);
   font-size: 0.85rem;
   color: var(--color-primary);
   background: #fff;
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: #fff;
   border-radius: var(--radius);
   padding: 22px;
   border: 1px solid var(--color-border);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .icon {
   width: 36px;
   height: 36px;
   color: var(--color-primary);
 }
 
 .card h3 {
   margin: 0;
 }

 .price {
   font-weight: 700;
   color: var(--color-primary);
 }
 
 .card p {
   margin: 0;
   color: var(--color-muted);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .feature-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: var(--color-secondary);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #1b1b1b;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   padding: 16px;
   border-radius: 16px;
   background: #fff;
   border: 1px solid var(--color-border);
 }
 
 .stat strong {
   font-size: 1.6rem;
   display: block;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .highlight-panel {
   background: #fff;
   border-radius: var(--radius);
   padding: 28px;
   border: 1px solid var(--color-border);
 }
 
 .testimonial {
   border-left: 4px solid var(--color-secondary);
   padding: 16px 0 16px 16px;
 }
 
 .testimonial p {
   margin: 0 0 10px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-item {
   padding: 20px;
   border-radius: 16px;
   border: 1px solid var(--color-border);
   background: #fff;
 }
 
 .process-steps {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .step-number {
   background: var(--color-primary);
   color: #fff;
   border-radius: 999px;
   width: 32px;
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .faq-item {
   border-bottom: 1px solid var(--color-border);
   padding: 16px 0;
 }
 
 .faq-question {
   width: 100%;
   background: none;
   border: none;
   text-align: left;
   font-weight: 600;
   font-size: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   padding: 0;
 }
 
 .faq-answer {
   margin-top: 10px;
   color: var(--color-muted);
 }
 
 .cta {
   display: flex;
   flex-direction: column;
   gap: 16px;
   align-items: flex-start;
 }
 
 .site-footer {
   background: #111827;
   color: #f9fafb;
   padding: 40px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .footer-links a {
   color: #f9fafb;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   background: #fff;
   border: 1px solid var(--color-border);
   border-radius: 16px;
   padding: 16px;
   width: min(680px, 94%);
   box-shadow: var(--shadow);
   z-index: 40;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 12px;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(15, 23, 42, 0.55);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 50;
 }
 
 .modal {
   background: #fff;
   border-radius: var(--radius);
   padding: 24px;
   width: min(520px, 94%);
   box-shadow: var(--shadow);
 }
 
 .modal h3 {
   margin-top: 0;
 }
 
 .modal-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 16px;
 }
 
 .checkbox-row {
   display: flex;
   align-items: center;
   gap: 10px;
   margin: 8px 0;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: var(--color-accent);
   color: #fff;
   border-radius: 999px;
   padding: 6px 12px;
   font-size: 0.85rem;
   font-weight: 600;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     flex-direction: row;
     gap: 24px;
     padding: 0;
     max-height: none;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .card-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > * {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-item {
     flex: 1;
   }
 
   .process-steps {
     flex-direction: row;
   }
 
   .step {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions,
   .modal-actions {
     flex-direction: row;
     justify-content: flex-start;
   }
 }
