 :root {
   --bg: #f7f6f2;
   --panel: #ffffff;
   --ink: #1f2933;
   --muted: #4b5563;
   --accent: #2f6f7d;
   --accent-dark: #1c4f58;
   --accent-soft: #e0eff2;
   --highlight: #f0e9dd;
   --border: #d7dde0;
 }

 * {
   box-sizing: border-box;
 }

 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 img,
 svg {
   max-width: 100%;
   display: block;
 }

 .container {
   width: min(1100px, 92%);
   margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 24px;
 }

 .site-header {
   background: var(--panel);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }

 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }

 .brand {
   font-weight: 700;
   letter-spacing: 0.06em;
   text-transform: lowercase;
 }

 .menu-toggle {
   background: var(--accent);
   color: #fff;
   border: none;
   padding: 10px 14px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
 }

 .site-nav {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--panel);
   padding: 16px;
   border: 1px solid var(--border);
   border-radius: 12px;
 }

 .site-nav.open {
   display: flex;
 }

 .nav-link {
   font-weight: 600;
   color: var(--accent-dark);
 }

 .section {
   padding: 56px 0;
 }

 .section.alt {
   background: var(--highlight);
 }

 .section-panel {
   background: var(--panel);
   padding: 32px;
   border-radius: 18px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .hero {
   padding: 72px 0;
   background: linear-gradient(120deg, #f7f6f2 0%, #e0eff2 70%);
 }

 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }

 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }

 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 10px;
   font-weight: 600;
   border: 2px solid var(--accent);
   color: var(--accent);
   background: transparent;
 }

 .button.primary {
   background: var(--accent);
   color: #fff;
 }

 .cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .card {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .icon-row {
   display: flex;
   align-items: center;
   gap: 12px;
 }

 .icon {
   width: 36px;
   height: 36px;
 }

 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }

 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .stat-item {
   background: var(--accent-soft);
   border-radius: 14px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 6px;
 }

 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .quote {
   padding: 20px;
   border-left: 4px solid var(--accent);
   background: var(--panel);
   border-radius: 12px;
 }

 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .faq-item {
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 12px;
   overflow: hidden;
 }

 .faq-toggle {
   width: 100%;
   text-align: left;
   padding: 16px;
   border: none;
   background: transparent;
   font-weight: 600;
   cursor: pointer;
 }

 .faq-panel {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }

 .faq-panel.open {
   display: block;
 }

 .footer {
   background: #111827;
   color: #e5e7eb;
   padding: 32px 0;
 }

 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }

 .cookie-banner.show {
   display: flex;
 }

 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }

 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(17, 24, 39, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 16px;
   z-index: 30;
 }

 .cookie-modal.show {
   display: flex;
 }

 .modal-panel {
   background: var(--panel);
   border-radius: 18px;
   padding: 24px;
   width: min(520px, 92%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }

 .pref-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px;
   border: 1px solid var(--border);
   border-radius: 12px;
 }

 .pref-toggle {
   border: 1px solid var(--accent);
   padding: 6px 12px;
   border-radius: 999px;
   background: transparent;
   color: var(--accent);
   cursor: pointer;
 }

 .pref-toggle.active {
   background: var(--accent);
   color: #fff;
 }

 .info-list {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }

 .service-table {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .service-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   border-radius: 14px;
   border: 1px solid var(--border);
   background: var(--panel);
 }

 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }

 .comparison-item {
   padding: 16px;
   border-radius: 14px;
   border: 1px solid var(--border);
   background: var(--accent-soft);
 }

 @media (min-width: 768px) {
   .site-nav {
     display: flex;
     flex-direction: row;
     border: none;
     padding: 0;
     background: transparent;
   }

   .menu-toggle {
     display: none;
   }

   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }

   .card {
     flex: 1 1 280px;
   }

   .split {
     flex-direction: row;
     align-items: center;
   }

   .split.reverse {
     flex-direction: row-reverse;
   }

   .stats {
     flex-direction: row;
   }

   .stat-item {
     flex: 1;
   }

   .testimonials {
     flex-direction: row;
   }

   .quote {
     flex: 1;
   }

   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }

   .service-table {
     flex-direction: row;
     flex-wrap: wrap;
   }

   .service-row {
     flex: 1 1 300px;
   }
 }
