 :root {
   color-scheme: light;
   --ink: #1b1b1f;
   --muted: #5d5f6a;
   --bg: #f7f6f3;
   --surface: #ffffff;
   --accent: #1f6f78;
   --accent-dark: #124a50;
   --accent-soft: #e4f2f1;
   --border: #e1e3e6;
   --warm: #f0e7dd;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 90%);
   margin: 0 auto;
 }
 
 header {
   background: var(--surface);
   position: sticky;
   top: 0;
   z-index: 10;
   border-bottom: 1px solid var(--border);
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   font-weight: 600;
   letter-spacing: 0.3px;
 }
 
 .brand svg {
   width: 34px;
   height: 34px;
 }
 
 .nav-links {
   display: none;
   gap: 1.25rem;
   align-items: center;
 }
 
 .nav-links a {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 .menu-toggle {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 44px;
   height: 44px;
   border: 1px solid var(--border);
   border-radius: 999px;
   background: var(--surface);
 }
 
 .menu-toggle span {
   display: block;
   width: 18px;
   height: 2px;
   background: var(--ink);
   position: relative;
 }
 
 .menu-toggle span::before,
 .menu-toggle span::after {
   content: "";
   position: absolute;
   left: 0;
   width: 18px;
   height: 2px;
   background: var(--ink);
 }
 
 .menu-toggle span::before {
   top: -6px;
 }
 
 .menu-toggle span::after {
   top: 6px;
 }
 
 .mobile-panel {
   display: none;
   flex-direction: column;
   gap: 1rem;
   padding: 1rem 0 1.5rem;
   border-top: 1px solid var(--border);
 }
 
 .mobile-panel a {
   font-size: 1rem;
   color: var(--muted);
 }
 
 .nav-open .mobile-panel {
   display: flex;
 }
 
 .hero {
   padding: 4rem 0 3rem;
   background: var(--surface);
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--accent-soft);
   padding: 1.75rem;
   border-radius: 18px;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   font-size: 0.85rem;
   color: var(--accent-dark);
   background: #d3ebe8;
   padding: 0.35rem 0.75rem;
   border-radius: 999px;
   width: fit-content;
 }
 
 h1,
 h2,
 h3 {
   margin: 0 0 0.75rem;
   line-height: 1.2;
 }
 
 p {
   margin: 0 0 1rem;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.warm {
   background: var(--warm);
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   margin-bottom: 2rem;
 }
 
 .section-header span {
   color: var(--accent-dark);
   font-size: 0.9rem;
   letter-spacing: 0.3px;
   text-transform: uppercase;
 }
 
 .grid-cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--surface);
   border-radius: 18px;
   padding: 1.5rem;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .card svg {
   width: 36px;
   height: 36px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.75rem 1.5rem;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   font-size: 0.95rem;
 }
 
 .button.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 1.25rem;
   background: var(--surface);
   border-radius: 14px;
   border: 1px solid var(--border);
 }
 
 .testimonial {
   background: var(--surface);
   padding: 1.5rem;
   border-radius: 18px;
   border-left: 4px solid var(--accent);
 }
 
 .logo-row {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .logo-pill {
   padding: 0.75rem 1rem;
   border-radius: 999px;
   border: 1px solid var(--border);
   background: var(--surface);
   width: fit-content;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .timeline-item {
   background: var(--surface);
   border-radius: 14px;
   padding: 1.25rem;
   border: 1px solid var(--border);
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
   background: var(--surface);
   border-radius: 16px;
   padding: 1.5rem;
   border: 1px solid var(--border);
 }
 
 .service-price {
   font-weight: 600;
   color: var(--accent-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
   background: var(--surface);
   border-radius: 14px;
   padding: 1.25rem;
   border: 1px solid var(--border);
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   border-radius: 14px;
   border: 1px solid var(--border);
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem 1.25rem;
   background: transparent;
   border: none;
   font-size: 1rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 
 .faq-answer {
   padding: 0 1.25rem 1rem;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.active .faq-answer {
   display: block;
 }
 
 .faq-item.active .faq-question svg {
   transform: rotate(180deg);
 }
 
 .footer {
   background: var(--ink);
   color: #f6f6f6;
   padding: 2.5rem 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .footer a {
   color: #f6f6f6;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 50%;
   transform: translateX(-50%);
   width: min(960px, 92%);
   background: var(--surface);
   border-radius: 18px;
   border: 1px solid var(--border);
   padding: 1.25rem;
   display: none;
   flex-direction: column;
   gap: 1rem;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 30;
 }
 
 .modal.show {
   display: flex;
 }
 
 .modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 1.75rem;
   width: min(560px, 95%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .modal-options {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .checkbox {
   display: flex;
   align-items: flex-start;
   gap: 0.75rem;
 }
 
 .contact-block {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.5rem;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 @media (min-width: 760px) {
   .menu-toggle {
     display: none;
   }
 
   .mobile-panel {
     display: none;
   }
 
   .nav-links {
     display: flex;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     flex: 1;
   }
 
   .grid-cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .service-card {
     flex: 1 1 calc(50% - 1.5rem);
   }
 
   .split {
     flex-direction: row;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .logo-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 calc(33% - 1rem);
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-start;
   }
 }
