 :root {
   --brand-700: #0f3b3f;
   --brand-600: #145058;
   --brand-500: #1f6d75;
   --accent-500: #e29a2d;
   --accent-600: #c8801f;
   --ink-900: #1a1c1e;
   --ink-700: #3a3f45;
   --ink-500: #5f6670;
   --surface-100: #f6f7f8;
   --surface-200: #eef1f2;
   --white: #ffffff;
   --radius-lg: 18px;
   --radius-md: 12px;
   --radius-sm: 8px;
   --shadow-soft: 0 10px 30px rgba(15, 59, 63, 0.12);
   --shadow-card: 0 10px 24px rgba(26, 28, 30, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink-900);
   background: var(--white);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: 100%;
   padding: 0 20px;
   margin: 0 auto;
   max-width: 1120px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   padding: 12px 22px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--brand-600);
   color: var(--white);
   font-weight: 600;
   letter-spacing: 0.2px;
   transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
 }
 
 .btn:hover,
 .btn:focus-visible {
   background: var(--brand-700);
   box-shadow: var(--shadow-soft);
   transform: translateY(-1px);
 }
 
 .btn-secondary {
   background: transparent;
   color: var(--brand-700);
   border-color: var(--brand-700);
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section-alt {
   background: var(--surface-100);
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 12px;
 }
 
 .section-lead {
   color: var(--ink-500);
   max-width: 720px;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 40;
   background: var(--white);
   border-bottom: 1px solid var(--surface-200);
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   color: var(--brand-700);
 }
 
 .brand svg {
   width: 32px;
   height: 32px;
 }
 
 .nav-toggle {
   border: 1px solid var(--surface-200);
   background: var(--white);
   border-radius: 10px;
   padding: 10px 12px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .nav {
   position: relative;
 }
 
 .nav-links {
   position: absolute;
   right: 0;
   top: 52px;
   background: var(--white);
   border: 1px solid var(--surface-200);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-card);
   display: none;
   flex-direction: column;
   gap: 8px;
   padding: 16px;
   min-width: 220px;
 }
 
 .nav-links a {
   padding: 8px 10px;
   border-radius: 8px;
   color: var(--ink-700);
 }
 
 .nav-links a:hover,
 .nav-links a:focus-visible {
   background: var(--surface-100);
 }
 
 .nav-links.is-open {
   display: flex;
 }
 
 .hero {
   padding: 72px 0 56px;
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--surface-100);
   border-radius: var(--radius-lg);
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-title {
   font-size: 2.4rem;
   margin: 0;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .pill {
   background: var(--white);
   border-radius: 999px;
   padding: 6px 12px;
   font-size: 0.9rem;
   color: var(--ink-700);
   border: 1px solid var(--surface-200);
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--white);
   border-radius: var(--radius-md);
   padding: 20px;
   border: 1px solid var(--surface-200);
   box-shadow: var(--shadow-card);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
   font-size: 1.2rem;
 }
 
 .card p {
   margin: 0;
   color: var(--ink-500);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 38px;
   height: 38px;
   border-radius: 12px;
   background: var(--surface-200);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   flex: 0 0 auto;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 22px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--brand-700);
   color: var(--white);
   border-radius: var(--radius-md);
   padding: 16px;
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
 }
 
 .testimonial {
   background: var(--white);
   border-left: 4px solid var(--accent-500);
   padding: 20px;
   border-radius: var(--radius-md);
 }
 
 .testimonial cite {
   display: block;
   margin-top: 12px;
   color: var(--ink-500);
   font-style: normal;
 }
 
 .quote-panel {
   background: var(--brand-600);
   color: var(--white);
   border-radius: var(--radius-lg);
   padding: 28px;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   background: var(--white);
   border-radius: var(--radius-md);
   padding: 20px;
   border: 1px solid var(--surface-200);
   box-shadow: var(--shadow-card);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand-700);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .comparison-item {
   padding: 16px;
   border-radius: var(--radius-md);
   background: var(--surface-100);
   border: 1px solid var(--surface-200);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .faq-item {
   border: 1px solid var(--surface-200);
   border-radius: var(--radius-md);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: var(--white);
   padding: 14px 16px;
   border: none;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   color: var(--ink-500);
   display: none;
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .badge {
   padding: 8px 12px;
   border-radius: 999px;
   background: var(--surface-200);
   color: var(--ink-700);
   font-size: 0.9rem;
 }
 
 .site-footer {
   background: var(--ink-900);
   color: var(--white);
   padding: 36px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .footer-links a {
   color: rgba(255, 255, 255, 0.8);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--white);
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-card);
   border: 1px solid var(--surface-200);
   padding: 16px;
   z-index: 80;
   display: none;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(26, 28, 30, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 90;
 }
 
 .modal.is-visible {
   display: flex;
 }
 
 .modal-content {
   background: var(--white);
   border-radius: var(--radius-lg);
   padding: 24px;
   max-width: 520px;
   width: 100%;
   box-shadow: var(--shadow-soft);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px 0;
   border-bottom: 1px solid var(--surface-200);
 }
 
 .toggle-row:last-of-type {
   border-bottom: none;
 }
 
 .toggle {
   display: inline-flex;
   align-items: center;
   gap: 8px;
 }
 
 .page-header {
   padding: 56px 0 28px;
 }
 
 .list {
   padding-left: 18px;
   color: var(--ink-700);
 }
 
 @media (min-width: 768px) {
   .header-inner {
     padding: 20px 0;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     box-shadow: none;
     border: none;
     padding: 0;
     gap: 12px;
     min-width: auto;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .cards,
   .service-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .service-card {
     flex: 1 1 calc(33.333% - 12px);
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > * {
     flex: 1;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 calc(33.333% - 12px);
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-banner {
     left: auto;
     max-width: 520px;
     right: 24px;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
