 :root {
   --color-bg: #f6f8f9;
   --color-surface: #ffffff;
   --color-ink: #1c2a33;
   --color-muted: #5b6a73;
   --color-brand: #2f7f94;
   --color-brand-dark: #1f5d6b;
   --color-accent: #e6f3f6;
   --color-highlight: #fef4df;
   --radius: 16px;
   --shadow: 0 12px 30px rgba(28, 42, 51, 0.12);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--color-ink);
   background: var(--color-bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: 100%;
   max-width: 1160px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .topbar {
   background: var(--color-surface);
   border-bottom: 1px solid #e5eef1;
   position: sticky;
   top: 0;
   z-index: 40;
 }
 
 .topbar__inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   font-size: 1.1rem;
 }
 
 .brand__mark {
   width: 36px;
   height: 36px;
   background: var(--color-brand);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 1rem;
   letter-spacing: 1px;
 }
 
 .nav {
   display: none;
 }
 
 .nav__list {
   display: flex;
   gap: 18px;
   list-style: none;
   margin: 0;
   padding: 0;
   font-weight: 600;
   color: var(--color-muted);
 }
 
 .nav__list a:hover,
 .nav__list a:focus {
   color: var(--color-brand-dark);
 }
 
 .menu-button {
   border: 1px solid #d5e2e6;
   background: #fff;
   border-radius: 999px;
   padding: 8px 14px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .menu-button span {
   display: block;
   width: 18px;
   height: 2px;
   background: var(--color-ink);
   position: relative;
 }
 
 .menu-button span::before,
 .menu-button span::after {
   content: "";
   position: absolute;
   width: 18px;
   height: 2px;
   background: var(--color-ink);
   left: 0;
 }
 
 .menu-button span::before {
   top: -6px;
 }
 
 .menu-button span::after {
   top: 6px;
 }
 
 .mobile-menu {
   position: fixed;
   inset: 0;
   background: rgba(28, 42, 51, 0.45);
   display: none;
   align-items: flex-start;
   justify-content: flex-end;
   z-index: 50;
 }
 
 .mobile-menu__panel {
   width: 80%;
   max-width: 320px;
   background: var(--color-surface);
   height: 100%;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .mobile-menu__panel ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 14px;
   font-weight: 600;
 }
 
 .mobile-menu__panel a {
   color: var(--color-ink);
 }
 
 .mobile-menu__panel a:hover,
 .mobile-menu__panel a:focus {
   color: var(--color-brand-dark);
 }
 
 body.menu-open .mobile-menu {
   display: flex;
 }
 
 .hero {
   padding: 60px 0 30px;
 }
 
 .hero__inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero__title {
   font-size: 2.1rem;
   line-height: 1.2;
 }
 
 .hero__lead {
   color: var(--color-muted);
   max-width: 680px;
 }
 
 .hero__actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .button {
   background: var(--color-brand);
   color: #fff;
   border: none;
   border-radius: 999px;
   padding: 12px 20px;
   font-weight: 700;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }
 
 .button--ghost {
   background: transparent;
   color: var(--color-brand-dark);
   border: 1px solid var(--color-brand);
 }
 
 .section {
   padding: 40px 0;
 }
 
 .section--alt {
   background: var(--color-surface);
 }
 
 .section--highlight {
   background: var(--color-highlight);
 }
 
 .section__title {
   font-size: 1.6rem;
   margin-bottom: 14px;
 }
 
 .section__lead {
   color: var(--color-muted);
   max-width: 760px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
   margin-top: 24px;
 }
 
 .card {
   background: var(--color-surface);
   border-radius: var(--radius);
   padding: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card--soft {
   background: var(--color-accent);
   box-shadow: none;
 }
 
 .icon-chip {
   width: 46px;
   height: 46px;
   border-radius: 14px;
   background: #e4f0f4;
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .split__panel {
   background: var(--color-surface);
   padding: 24px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .list {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .list li {
   display: flex;
   gap: 10px;
   align-items: flex-start;
 }
 
 .list__dot {
   width: 10px;
   height: 10px;
   background: var(--color-brand);
   border-radius: 999px;
   margin-top: 7px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .stat {
   background: var(--color-accent);
   border-radius: var(--radius);
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }
 
 .stat strong {
   font-size: 1.5rem;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
   margin-top: 20px;
 }
 
 .testimonial {
   background: var(--color-surface);
   border-radius: var(--radius);
   padding: 20px;
   box-shadow: var(--shadow);
 }
 
 .quote {
   font-size: 1.1rem;
   font-style: italic;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .faq-item {
   background: var(--color-surface);
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow);
 }
 
 .faq-item button {
   width: 100%;
   border: none;
   background: transparent;
   text-align: left;
   padding: 18px;
   font-size: 1rem;
   font-weight: 700;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
 }
 
 .faq-item__content {
   padding: 0 18px 18px;
   color: var(--color-muted);
   display: none;
 }
 
 .faq-item.open .faq-item__content {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison__row {
   background: var(--color-surface);
   padding: 16px;
   border-radius: var(--radius);
   display: flex;
   flex-direction: column;
   gap: 8px;
   box-shadow: var(--shadow);
 }
 
 .footer {
   background: #16252d;
   color: #dfe6ea;
   padding: 40px 0;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer__grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer__links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: var(--color-surface);
   border-radius: var(--radius);
   padding: 16px;
   box-shadow: var(--shadow);
   display: none;
   z-index: 60;
 }
 
 .cookie-banner p {
   margin: 0 0 12px;
   color: var(--color-muted);
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(22, 37, 45, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 70;
 }
 
 .cookie-modal__panel {
   background: var(--color-surface);
   border-radius: var(--radius);
   padding: 24px;
   width: min(560px, 90%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-options label {
   display: flex;
   gap: 10px;
   align-items: flex-start;
   color: var(--color-muted);
 }
 
 .cookie-modal__actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 body.cookie-banner-visible .cookie-banner {
   display: block;
 }
 
 body.cookie-modal-open .cookie-modal {
   display: flex;
 }
 
 @media (min-width: 768px) {
   .nav {
     display: block;
   }
 
   .menu-button {
     display: none;
   }
 
   .hero__inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero__copy {
     flex: 1;
   }
 
   .hero__panel {
     flex: 0 0 42%;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 260px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .testimonials {
     flex-direction: row;
   }
 
   .testimonial {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison__row {
     flex: 1 1 280px;
   }
 
   .footer__grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .footer__links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 18px;
   }
 }
