 :root {
   --brand-ink: #2d2a26;
   --brand-accent: #b66a5a;
   --brand-soft: #f5efe9;
   --brand-muted: #6f6660;
   --brand-line: #e4d8cf;
   --brand-white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--brand-ink);
   background: var(--brand-white);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   height: auto;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section--soft {
   background: var(--brand-soft);
 }
 
 .section--border {
   border-top: 1px solid var(--brand-line);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 14px;
   border-radius: 999px;
   background: var(--brand-soft);
   color: var(--brand-muted);
   font-size: 0.85rem;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 6px;
   border: 1px solid var(--brand-ink);
   font-weight: 600;
   transition: transform 0.2s ease, background 0.2s ease;
 }
 
 .button:hover,
 .button:focus {
   transform: translateY(-1px);
 }
 
 .button--accent {
   background: var(--brand-accent);
   border-color: var(--brand-accent);
   color: var(--brand-white);
 }
 
 .button--ghost {
   background: transparent;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 10;
   background: var(--brand-white);
   border-bottom: 1px solid var(--brand-line);
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
 }
 
 .brand img {
   width: 36px;
   height: 36px;
 }
 
 .nav-links {
   display: none;
   gap: 20px;
 }
 
 .nav-links a {
   font-weight: 500;
   color: var(--brand-muted);
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--brand-ink);
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--brand-line);
   border-radius: 6px;
   padding: 8px 12px;
   font-weight: 600;
 }
 
 .mobile-nav {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px 0 24px;
 }
 
 .mobile-nav.is-open {
   display: flex;
 }
 
 .hero {
   padding: 72px 0 56px;
 }
 
 .hero .content {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .hero h1 {
   font-size: clamp(2.2rem, 4vw, 3.2rem);
   margin: 0;
 }
 
 .hero p {
   color: var(--brand-muted);
   max-width: 640px;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
 }
 
 .cards {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   border: 1px solid var(--brand-line);
   border-radius: 10px;
   padding: 20px;
   background: var(--brand-white);
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .card .price {
   font-weight: 700;
   color: var(--brand-accent);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .feature {
   display: flex;
   gap: 16px;
 }
 
 .feature img {
   width: 44px;
   height: 44px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px;
   border-radius: 8px;
   background: var(--brand-soft);
 }
 
 .stat strong {
   font-size: 1.4rem;
 }
 
 .testimonial {
   border-left: 4px solid var(--brand-accent);
   padding-left: 16px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison .card {
   background: var(--brand-soft);
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .timeline-item {
   display: flex;
   gap: 16px;
 }
 
 .timeline-item span {
   font-weight: 700;
   color: var(--brand-accent);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--brand-line);
   border-radius: 8px;
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: var(--brand-white);
   border: none;
   padding: 16px;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--brand-muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .site-footer {
   background: var(--brand-ink);
   color: var(--brand-white);
   padding: 40px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .tagline {
   color: var(--brand-muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--brand-white);
   border: 1px solid var(--brand-line);
   border-radius: 10px;
   padding: 16px;
   display: none;
   flex-direction: column;
   gap: 12px;
   z-index: 20;
 }
 
 .cookie-banner.is-visible {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(45, 42, 38, 0.5);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 30;
 }
 
 .cookie-modal[hidden] {
   display: none;
 }
 
 .cookie-modal .modal-card {
   background: var(--brand-white);
   border-radius: 10px;
   padding: 24px;
   max-width: 520px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .checkbox-row {
   display: flex;
   align-items: center;
   gap: 10px;
 }
 
 .highlight-panel {
   background: var(--brand-soft);
   border-radius: 10px;
   padding: 24px;
 }
 
 .divider {
   width: 100%;
   height: 24px;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle,
   .mobile-nav {
     display: none;
   }
 
   .hero .content {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 240px;
   }
 
   .feature-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature {
     flex: 1 1 260px;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
