 :root {
   --bg: #f7f7f4;
   --surface: #ffffff;
   --ink: #1d2627;
   --muted: #5b6a6a;
   --brand: #0f8a8a;
   --brand-dark: #0a6060;
   --accent: #e8b347;
   --line: #e1e6e6;
   --shadow: 0 10px 30px rgba(15, 35, 35, 0.1);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .skip-link {
   position: absolute;
   left: -999px;
   top: 10px;
   background: var(--brand);
   color: #fff;
   padding: 8px 12px;
   border-radius: 6px;
   z-index: 10;
 }
 
 .skip-link:focus {
   left: 10px;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
 }
 
 .primary-nav {
   display: none;
 }
 
 .primary-nav ul {
   list-style: none;
   display: flex;
   gap: 18px;
   margin: 0;
   padding: 0;
   align-items: center;
 }
 
 .primary-nav a {
   font-weight: 600;
   color: var(--muted);
 }
 
 .menu-toggle {
   background: var(--brand);
   color: #fff;
   border: none;
   padding: 10px 14px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .menu-overlay {
   position: fixed;
   inset: 0;
   background: rgba(14, 24, 24, 0.45);
   z-index: 25;
 }
 
 .mobile-menu {
   position: fixed;
   top: 0;
   right: 0;
   width: 78%;
   max-width: 320px;
   height: 100%;
   background: var(--surface);
   z-index: 30;
   padding: 28px 22px;
   display: flex;
   flex-direction: column;
   gap: 18px;
   box-shadow: var(--shadow);
 }
 
 .mobile-menu ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .mobile-menu a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .is-hidden {
   display: none;
 }
 
 .hero {
   padding: 48px 0 32px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 26px;
 }
 
 .hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: #e3f1f1;
   color: var(--brand-dark);
   padding: 6px 12px;
   border-radius: 999px;
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 h1, h2, h3 {
   margin: 0 0 16px;
 }
 
 p {
   margin: 0 0 16px;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 8px;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   border: none;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--brand-dark);
   border: 1px solid var(--brand-dark);
 }
 
 .section {
   padding: 40px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-bottom: 22px;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 14px;
   padding: 20px;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.alt {
   background: #f1f6f6;
 }
 
 .icon-box {
   width: 48px;
   height: 48px;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   padding: 4px 10px;
   border-radius: 999px;
   background: #f5efe4;
   color: #6a4d1d;
   font-size: 0.85rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .stat strong {
   font-size: 1.5rem;
   color: var(--brand-dark);
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .process-step {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .step-index {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--brand);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .testimonial {
   background: var(--surface);
   border-left: 4px solid var(--brand);
   padding: 18px 20px;
   border-radius: 10px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .industry-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .industry-list span {
   background: #eaf2f2;
   color: var(--brand-dark);
   padding: 6px 12px;
   border-radius: 999px;
   font-weight: 600;
   font-size: 0.9rem;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 14px;
 }
 
 .comparison-row strong {
   color: var(--brand-dark);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 16px;
 }
 
 .faq-question {
   width: 100%;
   background: none;
   border: none;
   text-align: left;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   font-size: 1rem;
   cursor: pointer;
   color: var(--ink);
 }
 
 .faq-answer {
   margin-top: 10px;
 }
 
 .footer {
   background: #111b1b;
   color: #e4eded;
   padding: 36px 0;
 }
 
 .footer a {
   color: #e4eded;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 20px;
   left: 20px;
   right: 20px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 18px;
   box-shadow: var(--shadow);
   z-index: 40;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(12, 20, 20, 0.6);
   z-index: 50;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
 }
 
 .cookie-modal__content {
   background: var(--surface);
   border-radius: 16px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-preferences {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .pref-toggle {
   border: 1px solid var(--line);
   border-radius: 10px;
   padding: 12px;
   background: #f6f9f9;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
 }
 
 .pref-toggle[aria-pressed="true"] {
   background: #dfeeee;
   border-color: var(--brand);
 }
 
 .contact-block {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .highlight-panel {
   background: #0f3c3c;
   color: #f2f7f7;
   padding: 24px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .highlight-panel p {
   color: #dbe7e7;
 }
 
 @media (min-width: 768px) {
   .primary-nav {
     display: block;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-copy, .hero-aside {
     flex: 1;
   }
 
   .card-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card-row .card {
     flex: 1 1 280px;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 200px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison-row {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 }
 
 @media (min-width: 1024px) {
   .section {
     padding: 60px 0;
   }
 }
