 :root {
   --ink: #1f1a14;
   --muted: #5b5248;
   --cream: #f8f3ed;
   --sand: #efe6db;
   --sage: #2f5a4f;
   --sage-dark: #21443c;
   --accent: #c46b3c;
   --line: #e1d6c9;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
   color: var(--ink);
   background: #fff;
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   padding: 0 20px;
   margin: 0 auto;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 20;
   background: #fff;
   border-bottom: 1px solid var(--line);
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 16px 0;
 }
 
 .brand {
   font-weight: 700;
   letter-spacing: 0.4px;
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: #fff;
   padding: 8px 12px;
   border-radius: 6px;
   cursor: pointer;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: #fff;
   padding: 16px;
   border: 1px solid var(--line);
   border-radius: 10px;
   position: absolute;
   right: 20px;
   top: 64px;
   min-width: 200px;
 }
 
 body.nav-open .nav-links {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 500;
 }
 
 .hero {
   padding: 48px 0 32px;
   background: var(--cream);
 }
 
 .hero-inner {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.4rem;
   line-height: 1.2;
 }
 
 .hero p {
   color: var(--muted);
   font-size: 1.05rem;
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section-alt {
   background: var(--sand);
 }
 
 .section-title {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 18px;
 }
 
 .section-title h2 {
   font-size: 1.6rem;
 }
 
 .intro-text {
   color: var(--muted);
   max-width: 760px;
 }
 
 .cards {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-top: 20px;
 }
 
 .card {
   flex: 1 1 220px;
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 18px;
   background: #fff;
 }
 
 .card h3 {
   margin-bottom: 8px;
 }
 
 .card p {
   color: var(--muted);
 }
 
 .pillars {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .pillars .card {
   background: #fff;
 }
 
 .cta-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 16px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 999px;
   font-weight: 600;
   border: 1px solid var(--sage);
   background: var(--sage);
   color: #fff;
   cursor: pointer;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--sage);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
   margin-top: 16px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .feature-item span {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: var(--sage);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
   flex-shrink: 0;
 }
 
 .stats {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .stat {
   flex: 1 1 200px;
   padding: 16px;
   border-radius: 12px;
   background: #fff;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   font-size: 1.4rem;
   display: block;
   margin-bottom: 6px;
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .testimonial {
   padding: 18px;
   border-radius: 14px;
   background: #fff;
   border: 1px solid var(--line);
 }
 
 .testimonial p {
   color: var(--muted);
   margin-bottom: 10px;
 }
 
 .testimonial span {
   font-weight: 600;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .highlight {
   background: var(--sage);
   color: #fff;
   padding: 20px;
   border-radius: 16px;
 }
 
 .highlight p {
   color: #f6f2ec;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 10px;
   overflow: hidden;
   background: #fff;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 14px 16px;
   background: #fff;
   border: none;
   cursor: pointer;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .service-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .service-card {
   flex: 1 1 240px;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 18px;
   background: #fff;
 }
 
 .service-card p {
   color: var(--muted);
 }
 
 .price {
   font-weight: 700;
   color: var(--accent);
   margin-top: 8px;
 }
 
 .comparison {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
 }
 
 .comparison .card {
   flex: 1 1 260px;
 }
 
 .site-footer {
   border-top: 1px solid var(--line);
   background: #fff;
   padding: 32px 0;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px 20px;
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 30;
 }
 
 .cookie-banner.visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 26, 20, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 40;
 }
 
 .cookie-modal .modal-card {
   background: #fff;
   border-radius: 16px;
   padding: 20px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 body.modal-open .cookie-modal {
   display: flex;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 10px 12px;
   border: 1px solid var(--line);
   border-radius: 10px;
 }
 
 .toggle-btn {
   border: 1px solid var(--sage);
   background: transparent;
   color: var(--sage);
   padding: 6px 12px;
   border-radius: 999px;
   cursor: pointer;
 }
 
 .toggle-btn[aria-pressed="true"] {
   background: var(--sage);
   color: #fff;
 }
 
 .notice {
   font-size: 0.95rem;
   color: var(--muted);
 }
 
 @media (min-width: 900px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     position: static;
     display: flex;
     flex-direction: row;
     border: none;
     padding: 0;
     gap: 18px;
     min-width: 0;
   }
 
   body.nav-open .nav-links {
     display: flex;
   }
 
   .hero-inner {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-copy {
     flex: 1 1 55%;
   }
 
   .hero-panel {
     flex: 1 1 35%;
   }
 
   .split {
     flex-direction: row;
     align-items: stretch;
   }
 
   .cta-row {
     flex-direction: row;
     align-items: center;
   }
 
   .footer-inner {
     flex-direction: row;
     justify-content: space-between;
     align-items: flex-start;
   }
 }
