 :root {
   color-scheme: light;
   --bg: #f7f4f0;
   --surface: #ffffff;
   --ink: #1b1b1f;
   --muted: #5b5b66;
   --brand: #6b4f2b;
   --brand-dark: #3f2a16;
   --accent: #b38b59;
   --line: #e2ddd5;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--ink);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .nav-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
 }
 
 .brand {
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 0.04em;
   text-transform: uppercase;
 }
 
 .nav-toggle {
   background: none;
   border: 1px solid var(--brand);
   color: var(--brand);
   padding: 0.4rem 0.8rem;
   border-radius: 999px;
   font-size: 0.9rem;
 }
 
 .nav {
   position: absolute;
   left: 0;
   right: 0;
   top: 100%;
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   display: none;
 }
 
 .nav.open {
   display: block;
 }
 
 .nav ul {
   list-style: none;
   margin: 0;
   padding: 1rem;
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .nav a {
   padding: 0.3rem 0.4rem;
   border-radius: 6px;
 }
 
 .nav a:hover,
 .nav a:focus {
   background: var(--bg);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 0.4rem;
   padding: 0.65rem 1.1rem;
   border-radius: 999px;
   border: 1px solid var(--brand);
   background: var(--brand) !important;
   color: #fff !important;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--brand);
 }
 
 .btn.ghost {
   background: transparent;
   border-color: var(--line);
   color: var(--muted);
 }
 
 main {
   padding: 2rem 0 3rem;
 }
 
 section {
   padding: 2.5rem 0;
 }
 
 .section-title {
   font-size: 1.6rem;
   margin-bottom: 0.8rem;
 }
 
 .section-subtitle {
   color: var(--muted);
   margin-top: 0;
 }
 
 .hero {
   background: linear-gradient(135deg, #f0e7dc, #ffffff);
   border-bottom: 1px solid var(--line);
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .hero-card {
   background: var(--surface);
   border-radius: 18px;
   padding: 1.5rem;
   box-shadow: 0 18px 40px rgba(27, 27, 31, 0.08);
 }
 
 .pill {
   display: inline-flex;
   padding: 0.25rem 0.7rem;
   border-radius: 999px;
   background: #efe5d8;
   color: var(--brand-dark);
   font-size: 0.8rem;
   font-weight: 600;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .card {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.4rem;
   border: 1px solid var(--line);
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .icon-row {
   display: flex;
   align-items: center;
   gap: 0.8rem;
 }
 
 .icon {
   width: 42px;
   height: 42px;
   padding: 0.6rem;
   background: #f0e7dc;
   border-radius: 12px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 14px;
   padding: 1.2rem;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }
 
 .stat strong {
   font-size: 1.4rem;
   color: var(--brand-dark);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .highlight {
   background: var(--brand);
   color: #fff;
   padding: 2rem;
   border-radius: 18px;
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.4rem;
   border-left: 4px solid var(--accent);
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .step {
   background: #fff;
   border-radius: 14px;
   padding: 1.2rem;
   border: 1px solid var(--line);
 }
 
 .step span {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 12px;
   border: 1px solid var(--line);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 1rem;
   background: none;
   border: none;
   font-size: 1rem;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 1rem 1rem;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .badge-row {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .badge {
   background: #efe5d8;
   color: var(--brand-dark);
   padding: 0.3rem 0.7rem;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .footer {
   background: var(--brand-dark);
   color: #f9f6f1;
   padding: 2.5rem 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }
 
 .footer a {
   color: inherit;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 1rem;
   right: 1rem;
   background: var(--surface);
   border-radius: 16px;
   padding: 1.2rem;
   border: 1px solid var(--line);
   box-shadow: 0 18px 40px rgba(27, 27, 31, 0.12);
   display: none;
   flex-direction: column;
   gap: 0.8rem;
   z-index: 40;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   background: rgba(27, 27, 31, 0.5);
   z-index: 50;
 }
 
 .cookie-modal.show {
   display: flex;
 }
 
 .cookie-panel {
   background: #fff;
   border-radius: 18px;
   padding: 1.6rem;
   width: min(560px, 90%);
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .cookie-option {
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 0.8rem;
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }
 
 .cookie-option button {
   align-self: flex-start;
 }
 
 .contact-block {
   background: var(--surface);
   border-radius: 16px;
   padding: 1.4rem;
   border: 1px solid var(--line);
 }
 
 .service-card {
   border-radius: 18px;
   border: 1px solid var(--line);
   background: var(--surface);
   padding: 1.4rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   background: #fff;
   border-radius: 12px;
   padding: 1rem;
   border: 1px solid var(--line);
 }
 
 .two-column {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .list {
   padding-left: 1.2rem;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav {
     position: static;
     display: block;
     border: none;
   }
 
   .nav ul {
     flex-direction: row;
     justify-content: flex-end;
     padding: 0;
   }
 
   .hero-content {
     flex-direction: row;
     align-items: center;
   }
 
   .card-grid,
   .stats,
   .testimonials,
   .steps,
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .testimonial,
   .step,
   .service-card,
   .comparison-row {
     flex: 1 1 calc(50% - 1rem);
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 
   .two-column {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1rem;
   }
 }
