 .card.stacked {
   margin-top: 12px;
 }
 :root {
   --bg: #f6f3ef;
   --text: #1f1f1f;
   --muted: #5e5b57;
   --accent: #8b5a2b;
   --accent-2: #20303c;
   --light: #ffffff;
   --line: #e4ddd6;
   --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: 100%;
   max-width: 1100px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 header {
   background: var(--light);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 50;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .logo {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.08em;
   text-transform: uppercase;
 }
 
 .logo svg {
   width: 28px;
   height: 28px;
 }
 
 .nav-links {
   display: none;
   gap: 20px;
   font-size: 0.95rem;
 }
 
 .nav-links a {
   padding: 6px 0;
   border-bottom: 2px solid transparent;
 }
 
 .nav-links a:focus,
 .nav-links a:hover {
   border-color: var(--accent);
 }
 
 .menu-toggle {
   background: none;
   border: 1px solid var(--line);
   border-radius: 6px;
   padding: 8px 10px;
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
 }
 
 .mobile-menu {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px 0;
 }
 
 .mobile-menu.open {
   display: flex;
 }
 
 main {
   display: flex;
   flex-direction: column;
   gap: 36px;
   padding: 28px 0 60px;
 }
 
 section {
   background: var(--light);
   border-radius: 18px;
   padding: 28px;
   box-shadow: var(--shadow);
 }
 
 .section-muted {
   background: #efe7df;
 }
 
 .section-contrast {
   background: var(--accent-2);
   color: var(--light);
 }
 
 .section-contrast a {
   color: var(--light);
 }
 
 h1 {
   font-size: 2.2rem;
   line-height: 1.2;
   margin-bottom: 16px;
 }
 
 h2 {
   font-size: 1.6rem;
   margin-bottom: 12px;
 }
 
 h3 {
   font-size: 1.2rem;
   margin-bottom: 10px;
 }
 
 p {
   color: var(--muted);
   margin-bottom: 14px;
 }
 
 .section-contrast p {
   color: #e9e4df;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 10px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent);
   background: var(--accent);
   color: var(--light);
   font-weight: 600;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--accent);
 }
 
 .btn.light {
   background: var(--light);
   color: var(--accent-2);
   border-color: var(--light);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px;
   background: var(--light);
 }
 
 .card p {
   margin-bottom: 0;
 }
 
 .tag {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 12px;
   border-radius: 999px;
   background: #f0e8df;
   font-size: 0.85rem;
   color: var(--accent-2);
   margin-bottom: 12px;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .feature-item {
   display: flex;
   gap: 12px;
 }
 
 .feature-item svg {
   flex: 0 0 24px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .stat {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid var(--line);
   padding-bottom: 8px;
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 10px;
   border-left: 4px solid var(--accent);
   padding-left: 16px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 10px;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   padding: 14px;
   border-radius: 12px;
   border: 1px solid var(--line);
   background: var(--light);
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   gap: 12px;
 }
 
 .faq-item button:focus {
   outline: 2px solid var(--accent);
   outline-offset: 2px;
 }
 
 .faq-content {
   display: none;
   padding: 12px 14px 0;
   color: var(--muted);
 }
 
 .faq-item.open .faq-content {
   display: block;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 20px;
   background: #fcfaf7;
 }
 
 .service-card h3 {
   margin-bottom: 6px;
 }
 
 .price {
   font-weight: 700;
   color: var(--accent-2);
 }
 
 footer {
   background: var(--light);
   border-top: 1px solid var(--line);
   padding: 28px 0 40px;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 50%;
   transform: translateX(-50%);
   width: calc(100% - 32px);
   max-width: 720px;
   background: var(--light);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   display: none;
   z-index: 100;
 }
 
 .cookie-banner.active {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 120;
 }
 
 .cookie-modal.active {
   display: flex;
 }
 
 .cookie-modal .modal-content {
   background: var(--light);
   border-radius: 18px;
   padding: 24px;
   width: calc(100% - 32px);
   max-width: 520px;
   box-shadow: var(--shadow);
 }
 
 .overlay {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.35);
 }
 
 .modal-content {
   position: relative;
 }
 
 .modal-content h3 {
   margin-bottom: 8px;
 }
 
 .pref-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin: 16px 0;
 }
 
 .pref-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 10px 12px;
   border: 1px solid var(--line);
   border-radius: 12px;
 }
 
 .pref-item span {
   color: var(--muted);
 }
 
 .note {
   font-size: 0.9rem;
   color: var(--muted);
 }
 
 @media (min-width: 900px) {
   .nav-links {
     display: flex;
   }
 
   .menu-toggle,
   .mobile-menu {
     display: none;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .split > * {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card-grid .card {
     flex: 1 1 calc(33% - 16px);
   }
 
   .stats {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
     border-bottom: none;
     border-right: 1px solid var(--line);
     padding-bottom: 0;
     padding-right: 12px;
   }
 
   .stat:last-child {
     border-right: none;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .cookie-actions {
     flex-direction: row;
     justify-content: flex-end;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 }
