 :root {
   --bg: #f7f5f2;
   --surface: #ffffff;
   --ink: #1d1c1a;
   --muted: #5a5854;
   --accent: #2e6a6d;
   --accent-dark: #1e4c4f;
   --highlight: #e8f0ee;
   --line: #e1ded8;
   --warning: #f6efe3;
   --radius: 18px;
   --shadow: 0 18px 40px rgba(29, 28, 26, 0.08);
   --max-width: 1160px;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 ul {
   list-style: none;
 }
 
 .container {
   width: min(100%, var(--max-width));
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--highlight);
 }
 
 .section.dark {
   background: var(--accent-dark);
   color: #f7faf9;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--highlight);
   color: var(--accent-dark);
   font-size: 0.82rem;
   font-weight: 600;
 }
 
 .headline {
   font-size: clamp(2.1rem, 4vw, 3.2rem);
   line-height: 1.15;
   margin-bottom: 16px;
 }
 
 .subhead {
   font-size: 1.1rem;
   color: var(--muted);
   max-width: 720px;
 }
 
 .stack {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .row {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 24px;
   box-shadow: var(--shadow);
   flex: 1 1 260px;
 }
 
 .card.soft {
   box-shadow: none;
   border: 1px solid var(--line);
 }
 
 .panel {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 28px;
   border: 1px solid var(--line);
 }
 
 .panel.highlight {
   background: var(--warning);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--accent);
   color: #ffffff;
   font-weight: 600;
   border: 1px solid transparent;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent-dark);
   border-color: var(--accent-dark);
 }
 
 .btn:hover,
 .btn:focus {
   transform: translateY(-2px);
 }
 
 .site-header {
   position: sticky;
   top: 0;
   background: rgba(247, 245, 242, 0.96);
   backdrop-filter: blur(12px);
   border-bottom: 1px solid var(--line);
   z-index: 20;
 }
 
 .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;
   font-size: 1.1rem;
 }
 
 .brand-mark {
   width: 36px;
   height: 36px;
   border-radius: 12px;
   background: var(--accent);
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 
 .brand-mark svg {
   width: 22px;
   height: 22px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   padding: 16px;
   border-radius: 16px;
   box-shadow: var(--shadow);
   position: absolute;
   right: 20px;
   top: 72px;
   width: min(240px, 90vw);
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--muted);
 }
 
 .nav-links a:hover {
   color: var(--accent-dark);
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .menu-toggle {
   border: 1px solid var(--line);
   background: var(--surface);
   padding: 8px 10px;
   border-radius: 10px;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
 }
 
 .menu-toggle span {
   width: 18px;
   height: 2px;
   background: var(--ink);
   display: block;
 }
 
 @media (min-width: 860px) {
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     position: static;
     flex-direction: row;
     background: transparent;
     padding: 0;
     box-shadow: none;
     width: auto;
   }
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero .card {
   padding: 32px;
 }
 
 .hero-illustration {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
   background: var(--highlight);
   border-radius: var(--radius);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .feature-list li {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 36px;
   height: 36px;
   border-radius: 12px;
   background: var(--accent);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 12px;
   padding: 24px;
   border-left: 4px solid var(--accent);
   background: var(--surface);
   border-radius: 12px;
 }
 
 .quote {
   font-size: 1.1rem;
   font-style: italic;
 }
 
 .process-step {
   display: flex;
   gap: 16px;
 }
 
 .process-step span {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: var(--accent);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .service-card {
   border: 1px solid var(--line);
   border-radius: var(--radius);
   padding: 24px;
   background: var(--surface);
   flex: 1 1 280px;
 }
 
 .service-card h3 {
   margin-bottom: 8px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .comparison {
   border: 1px solid var(--line);
   border-radius: var(--radius);
   overflow: hidden;
 }
 
 .comparison-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   padding: 16px;
   border-bottom: 1px solid var(--line);
 }
 
 .comparison-row:last-child {
   border-bottom: none;
 }
 
 .comparison-row strong {
   flex: 1 1 160px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
   background: var(--surface);
 }
 
 .faq-button {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   border: none;
   background: transparent;
   font-weight: 600;
   text-align: left;
   cursor: pointer;
 }
 
 .faq-content {
   margin-top: 10px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-content {
   display: block;
 }
 
 .site-footer {
   padding: 40px 0;
   border-top: 1px solid var(--line);
   background: var(--surface);
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--surface);
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 50;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(20, 20, 20, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 60;
 }
 
 .modal.open {
   display: flex;
 }
 
 .modal-content {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 24px;
   width: min(520px, 100%);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-group {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 12px 16px;
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .toggle button {
   border: none;
   background: var(--highlight);
   padding: 6px 12px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .highlighted-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .highlighted-grid .panel {
   flex: 1 1 240px;
 }
 
 .contact-block {
   display: flex;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   border-radius: var(--radius);
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .info-list li span {
   display: block;
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 .pillars {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .pillars .card {
   padding: 20px;
 }
 
 .kicker {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 0.72rem;
   color: var(--muted);
   font-weight: 700;
 }
 
 .breadcrumb {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 @media (min-width: 860px) {
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero > * {
     flex: 1 1 0;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .pillars {
     flex-direction: row;
   }
 }
