 :root {
   --color-bg: #f7f4f1;
   --color-surface: #ffffff;
   --color-accent: #1f5f5b;
   --color-accent-dark: #174543;
   --color-highlight: #c79a5b;
   --color-text: #1f1f1f;
   --color-muted: #5c5c5c;
   --color-border: #e6ded6;
   --shadow-soft: 0 10px 30px rgba(31, 31, 31, 0.08);
   --radius-lg: 20px;
   --radius-md: 12px;
   --radius-sm: 8px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   background: var(--color-bg);
   color: var(--color-text);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   height: auto;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .section {
   padding: 60px 0;
 }
 
 .section-alt {
   background: var(--color-surface);
 }
 
 .section-highlight {
   background: #e9f1ef;
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.12em;
   font-size: 12px;
   color: var(--color-accent);
   font-weight: 600;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.2;
   margin: 0 0 16px 0;
 }
 
 h1 {
   font-size: 36px;
 }
 
 h2 {
   font-size: 28px;
 }
 
 h3 {
   font-size: 20px;
 }
 
 p {
   margin: 0 0 16px 0;
   color: var(--color-muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--color-accent);
   color: #ffffff;
   font-weight: 600;
   border: none;
   cursor: pointer;
   transition: background 0.2s ease;
 }
 
 .button:hover,
 .button:focus-visible {
   background: var(--color-accent-dark);
 }
 
 .button-outline {
   background: transparent;
   border: 1px solid var(--color-accent);
   color: var(--color-accent);
 }
 
 .button-ghost {
   background: transparent;
   border: 1px solid var(--color-border);
   color: var(--color-text);
 }
 
 header {
   background: var(--color-surface);
   box-shadow: var(--shadow-soft);
   position: sticky;
   top: 0;
   z-index: 20;
 }
 
 .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;
   font-size: 18px;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--color-border);
   border-radius: 10px;
   padding: 8px 12px;
   font-weight: 600;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 14px;
   padding: 12px 0 18px 0;
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--color-text);
 }
 
 .nav-open .nav-links {
   display: flex;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--color-surface);
   border-radius: var(--radius-lg);
   padding: 24px;
   box-shadow: var(--shadow-soft);
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--color-surface);
   border-radius: var(--radius-md);
   padding: 22px;
   box-shadow: var(--shadow-soft);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .icon-row {
   display: flex;
   align-items: center;
   gap: 12px;
 }
 
 .icon {
   width: 40px;
   height: 40px;
 }
 
 .stat-row {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .stat {
   background: var(--color-surface);
   border-radius: var(--radius-md);
   padding: 18px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
 }
 
 .stat strong {
   font-size: 24px;
   color: var(--color-accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .quote {
   font-size: 20px;
   font-weight: 600;
   color: var(--color-accent-dark);
 }
 
 .tags {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   background: #f0e7dd;
   color: var(--color-accent-dark);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 14px;
   font-weight: 600;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .process-step {
   display: flex;
   align-items: flex-start;
   gap: 14px;
 }
 
 .step-index {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: var(--color-accent);
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .testimonial {
   background: var(--color-surface);
   border-radius: var(--radius-md);
   padding: 20px;
   border-left: 4px solid var(--color-highlight);
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--color-border);
   border-radius: var(--radius-sm);
   overflow: hidden;
   background: var(--color-surface);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 16px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   display: none;
   padding: 0 16px 16px 16px;
   color: var(--color-muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 16px;
   border-radius: var(--radius-sm);
   border: 1px solid var(--color-border);
   background: var(--color-surface);
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 footer {
   background: #17201f;
   color: #e6e0db;
   padding: 40px 0;
 }
 
 footer a {
   color: #e6e0db;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-banner {
   position: fixed;
   left: 20px;
   right: 20px;
   bottom: 20px;
   background: var(--color-surface);
   padding: 18px;
   border-radius: var(--radius-md);
   box-shadow: var(--shadow-soft);
   display: flex;
   flex-direction: column;
   gap: 12px;
   z-index: 50;
 }
 
 .cookie-banner.is-hidden {
   display: none;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(23, 23, 23, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 60;
 }
 
 .modal.is-open {
   display: flex;
 }
 
 .modal-content {
   background: var(--color-surface);
   border-radius: var(--radius-lg);
   padding: 24px;
   max-width: 600px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   border: 1px solid var(--color-border);
   padding: 12px;
   border-radius: var(--radius-sm);
 }
 
 .toggle-button {
   padding: 6px 14px;
   border-radius: 999px;
   border: 1px solid var(--color-accent);
   background: transparent;
   color: var(--color-accent);
   font-weight: 600;
 }
 
 .toggle-button[aria-pressed="true"] {
   background: var(--color-accent);
   color: #ffffff;
 }
 
 @media (min-width: 768px) {
   h1 {
     font-size: 44px;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     gap: 20px;
     padding: 0;
   }
 
   .hero {
     flex-direction: row;
     align-items: stretch;
   }
 
   .hero-card,
   .hero-visual {
     flex: 1;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .stat-row {
     flex-direction: row;
   }
 
   .stat {
     flex: 1;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > * {
     flex: 1;
   }
 
   .feature-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-list .card {
     flex: 1 1 320px;
   }
 
   .comparison {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1;
   }
 
   .contact-grid {
     flex-direction: row;
     align-items: stretch;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 18px;
   }
 }
