 :root {
   --bg: #f7f4ef;
   --surface: #ffffff;
   --ink: #1f2a2e;
   --muted: #5c6b73;
   --brand: #1c6e76;
   --brand-dark: #124a50;
   --accent: #f2b84b;
   --soft: #eef2f3;
   --line: #d8e0e3;
   --radius: 18px;
   --shadow: 0 12px 30px rgba(26, 40, 44, 0.12);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   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;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 18px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .brand-badge {
   width: 36px;
   height: 36px;
   border-radius: 12px;
   background: var(--brand);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-weight: 700;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 16px;
   background: var(--surface);
   position: absolute;
   top: 68px;
   right: 4%;
   padding: 20px;
   border-radius: 16px;
   box-shadow: var(--shadow);
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-toggle {
   border: none;
   background: var(--brand);
   color: #fff;
   padding: 10px 14px;
   border-radius: 12px;
   font-weight: 600;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 48px;
   padding: 40px 0 72px;
 }
 
 .section {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 32px;
   box-shadow: var(--shadow);
 }
 
 .section-alt {
   background: var(--soft);
   box-shadow: none;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin-bottom: 16px;
 }
 
 .section-subtitle {
   color: var(--muted);
   margin-bottom: 20px;
 }
 
 .section-note {
   margin-top: 16px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 14px;
   border-radius: 999px;
   background: rgba(28, 110, 118, 0.12);
   color: var(--brand);
   font-weight: 600;
   font-size: 0.85rem;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: none;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand);
   border: 1px solid var(--brand);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .card.highlight {
   background: #fff7e6;
   border-color: #f0d7a2;
 }
 
 .card h3 {
   margin-bottom: 8px;
 }
 
 .icon-row {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 12px;
 }
 
 .stat-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stat {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 16px;
   background: var(--surface);
   border-radius: 16px;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   font-size: 1.5rem;
 }
 
 .testimonial {
   background: #f1f6f7;
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .tag {
   background: #e5eef0;
   color: var(--brand-dark);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .timeline-item {
   border-left: 3px solid var(--brand);
   padding-left: 16px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px;
   background: var(--surface);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 14px;
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 16px;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   gap: 12px;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 footer {
   background: #102c30;
   color: #e8f1f1;
   padding: 32px 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 50%;
   bottom: 20px;
   transform: translateX(-50%);
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   width: min(520px, 92%);
   box-shadow: var(--shadow);
   display: none;
   z-index: 60;
 }
 
 .cookie-banner.visible {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 70;
   padding: 24px;
 }
 
 .modal.open {
   display: flex;
 }
 
 .modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 24px;
   width: min(560px, 96%);
   max-height: 90vh;
   overflow-y: auto;
 }
 
 .modal-content h3 {
   margin-bottom: 12px;
 }
 
 .checkbox-row {
   display: flex;
   align-items: center;
   gap: 12px;
   margin: 12px 0;
 }
 
 @media (min-width: 760px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     gap: 24px;
     box-shadow: none;
     padding: 0;
     background: transparent;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split > * {
     flex: 1;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .cards .card {
     flex: 1 1 240px;
   }
 
   .stat-list {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-item {
     flex: 1;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 18px;
   }
 }
