 :root {
   --bg: #f7f5f2;
   --surface: #ffffff;
   --accent: #2f6d68;
   --accent-dark: #214e4a;
   --text: #1f2424;
   --muted: #5f6a69;
   --border: #d9d7d2;
   --highlight: #f0e5d6;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 button {
   font: inherit;
   border: none;
   background: none;
   cursor: pointer;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1rem;
 }
 
 .logo {
   display: flex;
   align-items: center;
   gap: 0.6rem;
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .logo-mark {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--accent);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .nav-links {
   display: none;
   gap: 1.2rem;
   font-weight: 500;
 }
 
 .nav-links a {
   padding: 0.3rem 0;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   border-color: var(--accent);
 }
 
 .nav-toggle {
   border: 1px solid var(--border);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   background: var(--surface);
 }
 
 .nav-panel {
   position: fixed;
   inset: 0;
   background: rgba(15, 20, 20, 0.4);
   display: none;
   align-items: flex-start;
   justify-content: flex-end;
   z-index: 30;
 }
 
 .nav-panel.open {
   display: flex;
 }
 
 .nav-panel-content {
   background: var(--surface);
   width: min(280px, 80%);
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   height: 100%;
 }
 
 .nav-panel-content a {
   font-size: 1.05rem;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 2.5rem;
   padding: 2.5rem 0 3rem;
 }
 
 .section {
   background: var(--surface);
   padding: 2rem 0;
 }
 
 .section--alt {
   background: var(--highlight);
 }
 
 .section-inner {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-size: 0.8rem;
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 h1 {
   font-size: clamp(2rem, 4vw, 3rem);
 }
 
 h2 {
   font-size: clamp(1.5rem, 2.5vw, 2.2rem);
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   color: var(--muted);
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero-card {
   background: var(--highlight);
   padding: 1.5rem;
   border-radius: 20px;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.7rem 1.4rem;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   gap: 0.4rem;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--accent-dark);
   border: 1px solid var(--accent);
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card {
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 1.4rem;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .card .icon {
   width: 42px;
   height: 42px;
   border-radius: 12px;
   background: var(--highlight);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .stat-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 1rem 1.2rem;
 }
 
 .quote {
   background: var(--accent-dark);
   color: #fff;
   padding: 2rem;
   border-radius: 24px;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .quote p {
   color: #f4f1ee;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .badge {
   background: var(--surface);
   border: 1px solid var(--border);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .process-step {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .step-number {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--accent);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
 }
 
 .testimonial-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .testimonial {
   border: 1px solid var(--border);
   padding: 1.4rem;
   border-radius: 16px;
   background: #fff;
 }
 
 .testimonial span {
   color: var(--accent-dark);
   font-weight: 600;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem 1.2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   font-weight: 600;
   background: none;
 }
 
 .faq-answer {
   padding: 0 1.2rem 1rem;
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .icon-circle {
   width: 26px;
   height: 26px;
   border-radius: 50%;
   background: var(--accent);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   padding: 1rem;
   border-radius: 16px;
   border: 1px solid var(--border);
   background: #fff;
 }
 
 .comparison-row strong {
   color: var(--accent-dark);
 }
 
 .highlight-panel {
   background: var(--accent);
   color: #fff;
   padding: 2rem;
   border-radius: 20px;
 }
 
 .highlight-panel p {
   color: #f1ece7;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .service-card {
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 1.4rem;
   background: #fff;
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .info-list {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .info-item {
   padding: 0.8rem 1rem;
   border-radius: 12px;
   border: 1px solid var(--border);
   background: #fff;
 }
 
 footer {
   background: #1f2424;
   color: #f7f5f2;
   padding: 2rem 0;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 1rem;
   font-size: 0.95rem;
 }
 
 .footer-links a {
   color: #f7f5f2;
 }
 
 .cookie-banner {
   position: fixed;
   left: 1rem;
   right: 1rem;
   bottom: 1rem;
   background: #fff;
   border-radius: 16px;
   padding: 1.2rem;
   border: 1px solid var(--border);
   box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
   display: none;
   z-index: 40;
 }
 
 .cookie-banner.open {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(12, 16, 16, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 50;
 }
 
 .modal.open {
   display: flex;
 }
 
 .modal-content {
   background: #fff;
   padding: 2rem;
   border-radius: 20px;
   width: min(520px, 92%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0.6rem 0.8rem;
   border: 1px solid var(--border);
   border-radius: 12px;
 }
 
 .toggle-button {
   padding: 0.4rem 0.9rem;
   border-radius: 999px;
   border: 1px solid var(--border);
   background: var(--highlight);
   font-size: 0.85rem;
 }
 
 @media (min-width: 860px) {
   .nav-links {
     display: flex;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split > * {
     flex: 1;
   }
 
   .card-list,
   .service-grid,
   .stat-list,
   .testimonial-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .service-card,
   .stat,
   .testimonial {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .process-step {
     align-items: flex-start;
   }
 
   .comparison-row {
     flex-direction: row;
     justify-content: space-between;
   }
 }
