 :root {
   --bg: #f7f4ef;
   --surface: #ffffff;
   --ink: #1f2328;
   --muted: #5d6673;
   --brand: #6b4f2b;
   --brand-dark: #4e3820;
   --accent: #d9b88f;
   --accent-2: #8c6a3a;
   --line: #e4ddd2;
   --success: #2f6f3e;
   --shadow: 0 10px 30px rgba(31, 35, 40, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   position: sticky;
   top: 0;
   z-index: 50;
   background: rgba(247, 244, 239, 0.96);
   backdrop-filter: blur(6px);
   border-bottom: 1px solid var(--line);
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 14px 0;
   gap: 16px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.2px;
 }
 
 .brand-mark {
   width: 32px;
   height: 32px;
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--surface);
   padding: 8px 12px;
   border-radius: 8px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 16px;
   box-shadow: var(--shadow);
 }
 
 .nav-links a {
   font-weight: 600;
   color: var(--ink);
 }
 
 .site-header.nav-open .nav-links {
   display: flex;
 }
 
 .hero {
   padding: 52px 0 32px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 28px;
   border-radius: 20px;
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .hero-title {
   font-size: clamp(2rem, 5vw, 3rem);
   line-height: 1.1;
   margin: 0;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .button {
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid var(--brand);
   font-weight: 600;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   cursor: pointer;
 }
 
 .button.primary {
   background: var(--brand);
   color: #fff;
 }
 
 .button.ghost {
   background: transparent;
   color: var(--brand);
 }
 
 .section {
   padding: 48px 0;
 }
 
 .section-alt {
   background: var(--surface);
 }
 
 .section-title {
   font-size: clamp(1.6rem, 3vw, 2.3rem);
   margin: 0 0 12px;
 }
 
 .section-subtitle {
   color: var(--muted);
   max-width: 720px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--line);
   padding: 20px;
   border-radius: 16px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card h3 {
   margin: 0;
 }
 
 .pill {
   display: inline-flex;
   padding: 6px 12px;
   border-radius: 999px;
   background: var(--accent);
   font-size: 0.85rem;
   font-weight: 600;
   color: var(--brand-dark);
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: 16px;
   padding: 20px;
   border: 1px solid var(--line);
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .stat strong {
   font-size: 1.4rem;
 }
 
 .icon-list {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .icon-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
 }
 
 .icon-item img {
   width: 36px;
   height: 36px;
 }
 
 .testimonial {
   background: var(--surface);
   border-left: 4px solid var(--accent-2);
   padding: 20px;
   border-radius: 12px;
 }
 
 .quote {
   font-style: italic;
 }
 
 .tag-row {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }
 
 .tag {
   background: #efe6d9;
   color: var(--brand-dark);
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .process-step {
   display: flex;
   flex-direction: column;
   gap: 8px;
   background: var(--surface);
   border-radius: 14px;
   padding: 18px;
   border: 1px solid var(--line);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .comparison-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
   background: #fefbf7;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 18px;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 12px;
   background: var(--surface);
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   padding: 16px 18px;
   background: transparent;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-panel {
   padding: 0 18px 16px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item[aria-expanded="true"] .faq-panel {
   display: block;
 }
 
 .cta {
   background: linear-gradient(120deg, #f1e6d6, #f8f4ee);
   border-radius: 20px;
   padding: 28px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   border: 1px solid var(--line);
 }
 
 .footer {
   padding: 32px 0;
   border-top: 1px solid var(--line);
   background: #fdfaf6;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   font-size: 0.95rem;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--brand-dark);
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .highlight-panel {
   background: #f0e3cf;
   border-radius: 18px;
   padding: 20px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   right: 18px;
   left: 18px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 18px;
   box-shadow: var(--shadow);
   display: none;
   gap: 12px;
   z-index: 100;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 35, 40, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 110;
 }
 
 .cookie-modal .modal-card {
   background: var(--surface);
   width: min(560px, 92%);
   border-radius: 18px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 12px 14px;
 }
 
 .toggle-button {
   border: 1px solid var(--line);
   background: #fff;
   border-radius: 999px;
   padding: 6px 14px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .toggle-button.active {
   background: var(--brand);
   color: #fff;
   border-color: var(--brand);
 }
 
 .notice {
   color: var(--muted);
   font-size: 0.95rem;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     gap: 18px;
     border: none;
     padding: 0;
     background: transparent;
     box-shadow: none;
   }
 
   .hero-grid,
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card {
     flex: 1.1;
   }
 
   .card-grid,
   .stats,
   .process,
   .comparison,
   .service-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .stat,
   .process-step,
   .comparison-item,
   .service-card {
     flex: 1 1 240px;
   }
 
   .icon-list {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .icon-item {
     flex: 1 1 240px;
   }
 
   .footer-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
   }
 }
