 :root {
   --ink: #1f1b16;
   --muted: #5b5348;
   --paper: #f6f2ec;
   --paper-strong: #fffaf4;
   --accent: #c5772b;
   --accent-dark: #8a4f1f;
   --teal: #2f5f5f;
   --border: #e4dbcf;
   --shadow: rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--paper);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 1.25rem;
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section--tint {
   background: var(--paper-strong);
 }
 
 .section--accent {
   background: #f1e7d8;
 }
 
 .section-title {
   font-size: 2rem;
   margin: 0 0 1rem;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 0.78rem;
   color: var(--muted);
   margin-bottom: 0.6rem;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #fff;
   font-weight: 600;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .btn:focus {
   outline: 2px solid var(--accent-dark);
   outline-offset: 2px;
 }
 
 .btn:hover {
   transform: translateY(-1px);
   box-shadow: 0 8px 20px var(--shadow);
 }
 
 .btn--outline {
   background: transparent;
   color: var(--accent-dark);
   border-color: var(--accent-dark);
 }
 
 .header {
   background: var(--paper-strong);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.2rem;
   letter-spacing: 0.02em;
 }
 
 .nav__toggle {
   border: 1px solid var(--border);
   background: #fff;
   padding: 0.5rem 0.7rem;
   border-radius: 0.6rem;
   font-weight: 600;
 }
 
 .nav__list {
   list-style: none;
   padding: 0;
   margin: 0;
   display: none;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .nav__list a {
   font-weight: 600;
 }
 
 .nav--open .nav__list {
   display: flex;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero__media {
   background: #fff;
   border-radius: 1.5rem;
   padding: 2rem;
   box-shadow: 0 12px 30px var(--shadow);
 }
 
 .hero__actions {
   display: flex;
   flex-direction: column;
   gap: 0.75rem;
 }
 
 .card-grid,
 .feature-grid,
 .stats-grid,
 .testimonial-grid,
 .insight-grid,
 .faq-grid,
 .service-grid,
 .comparison-grid,
 .team-grid {
   display: flex;
   flex-direction: column;
   gap: 1.25rem;
 }
 
 .card {
   background: #fff;
   border-radius: 1.25rem;
   padding: 1.5rem;
   box-shadow: 0 10px 24px var(--shadow);
   border: 1px solid #f0e6da;
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .feature {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature img {
   width: 42px;
   height: 42px;
 }
 
 .stat {
   display: flex;
   flex-direction: column;
   gap: 0.3rem;
   padding: 1.2rem;
   background: #fff;
   border-radius: 1rem;
   border: 1px solid var(--border);
 }
 
 .stat strong {
   font-size: 1.6rem;
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
   margin: 0 0 0.8rem;
 }
 
 .tag {
   display: inline-block;
   background: #efe1d2;
   padding: 0.3rem 0.8rem;
   border-radius: 999px;
   font-size: 0.8rem;
   margin-right: 0.5rem;
 }
 
 .list {
   padding-left: 1.2rem;
   margin: 0.5rem 0 0;
 }
 
 .list li {
   margin-bottom: 0.4rem;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .process-step {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .process-step span {
   background: var(--accent);
   color: #fff;
   font-weight: 700;
   width: 34px;
   height: 34px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 0.9rem;
   overflow: hidden;
   background: #fff;
 }
 
 .faq-item button {
   width: 100%;
   background: transparent;
   border: none;
   text-align: left;
   padding: 1rem 1.2rem;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
 }
 
 .faq-panel {
   padding: 0 1.2rem 1rem;
   color: var(--muted);
 }
 
 .faq-panel[hidden] {
   display: none;
 }
 
 .footer {
   background: #1d1b16;
   color: #f5efe8;
   padding: 2.5rem 0;
 }
 
 .footer a {
   color: inherit;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .footer-nav {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.2);
   margin-top: 1.5rem;
   padding-top: 1rem;
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.7);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1rem;
   left: 1rem;
   right: 1rem;
   background: #fff;
   border-radius: 1rem;
   padding: 1rem 1.2rem;
   border: 1px solid var(--border);
   box-shadow: 0 12px 30px var(--shadow);
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.active {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-top: 0.8rem;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 1.5rem;
   z-index: 40;
 }
 
 .modal.active {
   display: flex;
 }
 
 .modal__content {
   background: #fff;
   padding: 1.8rem;
   border-radius: 1.2rem;
   max-width: 520px;
   width: 100%;
 }
 
 .modal__content h3 {
   margin-top: 0;
 }
 
 .modal__actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-top: 1rem;
 }
 
 .toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0.8rem 0;
   border-bottom: 1px solid var(--border);
 }
 
 .toggle label {
   font-weight: 600;
 }
 
 .comparison-grid .card {
   background: #fffaf4;
 }
 
 .highlight {
   background: var(--teal);
   color: #fff;
   padding: 1.5rem;
   border-radius: 1rem;
 }
 
 .pillars {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .pillars .card {
   background: #fdf6ee;
 }
 
 .cta {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   align-items: flex-start;
 }
 
 @media (min-width: 768px) {
   .nav__toggle {
     display: none;
   }
 
   .nav__list {
     display: flex;
     flex-direction: row;
     gap: 1.5rem;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero__actions {
     flex-direction: row;
   }
 
   .card-grid,
   .feature-grid,
   .stats-grid,
   .testimonial-grid,
   .insight-grid,
   .faq-grid,
   .service-grid,
   .comparison-grid,
   .team-grid,
   .pillars {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card-grid .card,
   .feature-grid .card,
   .testimonial-grid .card,
   .insight-grid .card,
   .service-grid .card,
   .comparison-grid .card,
   .team-grid .card,
   .pillars .card {
     flex: 1 1 calc(50% - 1.25rem);
   }
 
   .stats-grid .stat {
     flex: 1 1 calc(25% - 1rem);
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .split > * {
     flex: 1;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .cookie-actions,
   .modal__actions {
     flex-direction: row;
   }
 }
 
 @media (min-width: 1024px) {
   .card-grid .card,
   .feature-grid .card,
   .testimonial-grid .card,
   .insight-grid .card,
   .service-grid .card,
   .comparison-grid .card,
   .team-grid .card,
   .pillars .card {
     flex: 1 1 calc(33.333% - 1.25rem);
   }
 }
