 :root {
   --bg: #f7f5f2;
   --ink: #1f2933;
   --muted: #5f6c75;
   --brand: #1b5b4a;
   --brand-light: #e2f0ea;
   --accent: #b45f2a;
   --card: #ffffff;
   --border: #d7d3cc;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   display: block;
   max-width: 100%;
 }
 
 .container {
   width: 100%;
   max-width: 1100px;
   padding: 0 20px;
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--brand-light);
 }
 
 .section.dark {
   background: var(--brand);
   color: #ffffff;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 0.75rem;
   color: var(--accent);
   font-weight: 600;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0 0 12px;
 }
 
 h1 {
   font-size: 2.1rem;
 }
 
 h2 {
   font-size: 1.7rem;
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   margin: 0 0 12px;
   color: var(--muted);
 }
 
 ul {
   margin: 0 0 12px;
   padding-left: 20px;
   color: var(--muted);
 }
 
 li {
   margin-bottom: 6px;
 }
 
 .dark li {
   color: #e9f4ef;
 }
 
 .dark p {
   color: #e9f4ef;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 30px;
   border: 1px solid var(--brand);
   background: var(--brand);
   color: #ffffff;
   font-weight: 600;
   gap: 8px;
 }
 
 .btn.alt {
   background: transparent;
   color: var(--brand);
 }
 
 .btn.light {
   border-color: #ffffff;
   color: #ffffff;
 }
 
 header {
   background: #ffffff;
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 14px 0;
   gap: 12px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 14px 0;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .menu-toggle {
   border: 1px solid var(--border);
   background: #ffffff;
   padding: 8px 12px;
   border-radius: 8px;
   font-weight: 600;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero-card {
   background: var(--card);
   border-radius: 20px;
   padding: 22px;
   border: 1px solid var(--border);
 }
 
 .inline-icon {
   width: 36px;
   height: 36px;
   color: var(--brand);
 }
 
 .card-grid,
 .stats-grid,
 .logo-row,
 .process-steps,
 .values-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--card);
   border: 1px solid var(--border);
   padding: 18px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card.alt {
   background: #ffffff;
   border-left: 4px solid var(--accent);
 }
 
 .stat {
   background: #ffffff;
   border-radius: 16px;
   padding: 18px;
   border: 1px solid var(--border);
 }
 
 .quote {
   font-size: 1.1rem;
   font-style: italic;
   color: var(--ink);
 }
 
 .panel {
   background: #ffffff;
   border-radius: 20px;
   padding: 22px;
   border: 1px solid var(--border);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison .card {
   background: #fff7f0;
 }
 
 .faq-item {
   border-bottom: 1px solid var(--border);
   padding: 12px 0;
 }
 
 .faq-question {
   width: 100%;
   background: transparent;
   border: none;
   text-align: left;
   padding: 0;
   font-weight: 600;
   font-size: 1rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   color: var(--ink);
 }
 
 .faq-answer {
   display: none;
   padding-top: 8px;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 footer {
   background: #111a1f;
   color: #e8ecef;
   padding: 32px 0;
 }
 
 footer a {
   color: #e8ecef;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .tag {
   display: inline-flex;
   padding: 6px 10px;
   border-radius: 20px;
   background: #f0ede9;
   font-size: 0.85rem;
   color: var(--muted);
 }
 
 .pill-row {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }
 
 .button-row {
   margin-top: 16px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: #ffffff;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .modal-overlay {
   position: fixed;
   inset: 0;
   background: rgba(15, 23, 32, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 40;
 }
 
 .modal-overlay.show {
   display: flex;
 }
 
 .modal {
   background: #ffffff;
   border-radius: 18px;
   padding: 22px;
   width: 100%;
   max-width: 520px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
   padding: 10px 0;
   border-bottom: 1px solid var(--border);
 }
 
 .toggle-row:last-child {
   border-bottom: none;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--brand);
 }
 
 .contact-card {
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid var(--border);
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 @media (min-width: 768px) {
   h1 {
     font-size: 2.6rem;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     gap: 20px;
     padding: 0;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .card-grid,
   .stats-grid,
   .logo-row,
   .process-steps,
   .values-grid,
   .footer-grid,
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .panel,
   .contact-card {
     flex: 1 1 240px;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 }
