 :root {
   --bg: #f9f6f3;
   --surface: #ffffff;
   --surface-alt: #f2e9e6;
   --text: #2b2220;
   --muted: #6b5e59;
   --accent: #b86b77;
   --accent-dark: #8d4651;
   --line: #e4d9d4;
   --success: #3f7a5a;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section--alt {
   background: var(--surface-alt);
 }
 
 .section--surface {
   background: var(--surface);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 0.75rem;
   color: var(--accent-dark);
   margin-bottom: 0.5rem;
 }
 
 h1,
 h2,
 h3 {
   font-weight: 600;
   line-height: 1.25;
 }
 
 h1 {
   font-size: clamp(2.2rem, 4vw, 3.2rem);
 }
 
 h2 {
   font-size: clamp(1.6rem, 3vw, 2.2rem);
   margin-bottom: 1rem;
 }
 
 h3 {
   font-size: 1.2rem;
   margin-bottom: 0.6rem;
 }
 
 p {
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   background: var(--accent);
   color: #fff;
   border: none;
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .button:hover,
 .button:focus-visible {
   background: var(--accent-dark);
   transform: translateY(-1px);
 }
 
 .button--ghost {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent);
 }
 
 .link-button {
   background: none;
   border: none;
   color: var(--accent-dark);
   font-weight: 600;
   cursor: pointer;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 30;
 }
 
 .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;
 }
 
 .logo span {
   color: var(--accent);
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--surface);
   padding: 0.4rem 0.7rem;
   border-radius: 0.4rem;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   background: var(--surface);
   padding: 1rem;
   border-radius: 0.8rem;
   border: 1px solid var(--line);
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .site-header.is-open .nav-links {
   display: flex;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 1.6rem;
   border-radius: 1rem;
   border: 1px solid var(--line);
 }
 
 .hero-meta {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   font-weight: 600;
 }
 
 .flex {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--surface);
   padding: 1.4rem;
   border-radius: 0.9rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .card img {
   width: 48px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--surface);
   padding: 1rem;
   border-radius: 0.8rem;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
   color: var(--accent-dark);
 }
 
 .quote {
   background: var(--surface);
   padding: 1.8rem;
   border-radius: 1rem;
   border-left: 4px solid var(--accent);
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .step {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   padding: 1rem;
   border-radius: 0.8rem;
   border: 1px dashed var(--accent);
 }
 
 .badge {
   display: inline-flex;
   align-items: center;
   padding: 0.2rem 0.6rem;
   border-radius: 999px;
   background: var(--surface-alt);
   color: var(--accent-dark);
   font-size: 0.75rem;
   font-weight: 600;
 }
 
 .testimonial {
   background: var(--surface);
   padding: 1.4rem;
   border-radius: 1rem;
   border: 1px solid var(--line);
 }
 
 .testimonial span {
   font-weight: 600;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 0.8rem;
   border: 1px solid var(--line);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem;
   background: none;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 1rem 1rem;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   padding: 1rem;
   background: var(--surface);
   border-radius: 0.8rem;
   border: 1px solid var(--line);
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .service-card {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   background: var(--surface);
   padding: 1.4rem;
   border-radius: 1rem;
   border: 1px solid var(--line);
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .pill {
   background: var(--surface-alt);
   color: var(--accent-dark);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .info-block {
   background: var(--surface);
   border-radius: 0.8rem;
   border: 1px solid var(--line);
   padding: 1.2rem;
 }
 
 .site-footer {
   background: var(--surface);
   border-top: 1px solid var(--line);
   padding: 2rem 0;
 }
 
 .footer-content {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 1rem;
   right: 1rem;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 1rem;
   padding: 1rem;
   display: none;
   flex-direction: column;
   gap: 1rem;
   z-index: 60;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1rem;
   z-index: 70;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .cookie-panel {
   background: var(--surface);
   border-radius: 1rem;
   padding: 1.6rem;
   width: min(560px, 95%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cookie-toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0.8rem;
   border: 1px solid var(--line);
   border-radius: 0.8rem;
 }
 
 .toggle-button {
   border: 1px solid var(--line);
   background: var(--surface-alt);
   padding: 0.3rem 0.8rem;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .toggle-button.is-active {
   background: var(--accent);
   color: #fff;
   border-color: var(--accent);
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     align-items: center;
     border: none;
     padding: 0;
     background: transparent;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-content,
   .hero-card {
     flex: 1;
   }
 
   .cards,
   .stats,
   .process,
   .service-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .step,
   .service-card {
     flex: 1 1 calc(33.333% - 1rem);
   }
 
   .testimonial {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .contact-grid {
     flex-direction: row;
   }
 
   .info-block {
     flex: 1;
   }
 
   .footer-content {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 }
