 :root {
   --bg: #0f1416;
   --bg-soft: #182025;
   --bg-alt: #f6f2ee;
   --text: #e8e2da;
   --text-dark: #1a1f22;
   --accent: #c8a76b;
   --accent-2: #8f6b3f;
   --line: #2a343a;
   --muted: #b9b1a6;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--text-dark);
   background: var(--bg-alt);
   line-height: 1.6;
 }
 
 img,
 svg {
   display: block;
   max-width: 100%;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .page {
   min-height: 100vh;
   display: flex;
   flex-direction: column;
 }
 
 .container {
   width: min(1120px, 92vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 60px 0;
 }
 
 .section.dark {
   background: var(--bg);
   color: var(--text);
 }
 
 .section.soft {
   background: var(--bg-soft);
   color: var(--text);
 }
 
 .section.accent {
   background: var(--accent);
   color: var(--text-dark);
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.75rem;
   letter-spacing: 0.18em;
   color: var(--accent-2);
 }
 
 h1,
 h2,
 h3 {
   margin: 0 0 16px;
   line-height: 1.2;
 }
 
 h1 {
   font-size: 2.2rem;
 }
 
 h2 {
   font-size: 1.7rem;
 }
 
 h3 {
   font-size: 1.2rem;
 }
 
 p {
   margin: 0 0 16px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--accent-2);
   background: transparent;
   color: inherit;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.primary {
   background: var(--accent);
   border-color: var(--accent);
   color: var(--text-dark);
 }
 
 .btn.ghost {
   border-color: currentColor;
 }
 
 header {
   background: var(--bg);
   color: var(--text);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 14px 0;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   letter-spacing: 0.04em;
 }
 
 .brand svg {
   width: 28px;
   height: 28px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 14px;
   background: var(--bg);
   padding: 20px;
   position: absolute;
   left: 0;
   right: 0;
   top: 58px;
   border-top: 1px solid var(--line);
 }
 
 .nav-links.active {
   display: flex;
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: transparent;
   color: var(--text);
   padding: 8px 10px;
   border-radius: 8px;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--white);
   padding: 22px;
   border-radius: 18px;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .card {
   background: var(--white);
   padding: 20px;
   border-radius: 16px;
   border: 1px solid #eadfce;
 }
 
 .card.dark {
   background: var(--bg-soft);
   color: var(--text);
   border-color: var(--line);
 }
 
 .feature {
   display: flex;
   gap: 16px;
 }
 
 .feature svg {
   width: 36px;
   height: 36px;
   flex: 0 0 36px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   display: flex;
   align-items: baseline;
   justify-content: space-between;
   padding: 14px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 }
 
 .testimonial {
   display: flex;
   flex-direction: column;
   gap: 8px;
   border-left: 3px solid var(--accent);
   padding-left: 16px;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .process-step {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: rgba(200, 167, 107, 0.2);
   color: var(--accent-2);
   font-size: 0.8rem;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid #eadfce;
   border-radius: 12px;
   overflow: hidden;
   background: var(--white);
 }
 
 .faq-question {
   width: 100%;
   padding: 16px;
   background: transparent;
   border: none;
   text-align: left;
   font-weight: 600;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 10px;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
 }
 
 .faq-item.active .faq-answer {
   display: block;
 }
 
 .footer {
   padding: 40px 0;
   background: var(--bg);
   color: var(--text);
   margin-top: auto;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .contact-list {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .banner {
   position: fixed;
   bottom: 16px;
   left: 16px;
   right: 16px;
   background: var(--white);
   color: var(--text-dark);
   padding: 18px;
   border-radius: 16px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
   display: none;
   z-index: 20;
 }
 
 .banner.active {
   display: block;
 }
 
 .banner-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 14px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.6);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 30;
   padding: 16px;
 }
 
 .modal.active {
   display: flex;
 }
 
 .modal-content {
   background: var(--white);
   color: var(--text-dark);
   padding: 24px;
   border-radius: 18px;
   width: min(520px, 92vw);
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 0;
   border-bottom: 1px solid #eadfce;
 }
 
 .toggle {
   border: 1px solid #eadfce;
   padding: 6px 12px;
   border-radius: 999px;
   background: transparent;
   font-weight: 600;
 }
 
 .toggle.active {
   background: var(--accent);
   border-color: var(--accent);
   color: var(--text-dark);
 }
 
 @media (min-width: 768px) {
   h1 {
     font-size: 2.8rem;
   }
 
   .nav-links {
     display: flex;
     position: static;
     flex-direction: row;
     background: transparent;
     padding: 0;
     border-top: none;
     gap: 20px;
   }
 
   .nav-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid > * {
     flex: 1 1 280px;
   }
 
   .stats {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .stat {
     flex: 1 1 200px;
     border-bottom: none;
     border-right: 1px solid rgba(255, 255, 255, 0.2);
     padding: 0 18px;
   }
 
   .stat:last-child {
     border-right: none;
   }
 
   .banner-actions {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
   }
 }
