 :root {
   --bg: #f7f5f2;
   --surface: #ffffff;
   --ink: #1f2937;
   --muted: #5b6472;
   --brand: #3f6d6a;
   --brand-dark: #2c4c4a;
   --accent: #d7a56b;
   --line: #e6e1db;
   --shadow: 0 10px 30px rgba(31, 41, 55, 0.08);
   --radius: 16px;
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, 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;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: #f0ede9;
 }
 
 .section.panel {
   background: var(--surface);
   border-radius: var(--radius);
   margin: 24px auto;
   box-shadow: var(--shadow);
   width: min(1120px, 92%);
 }
 
 .eyebrow {
   text-transform: uppercase;
   letter-spacing: 0.08em;
   font-size: 0.78rem;
   color: var(--brand);
   font-weight: 600;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 header {
   position: sticky;
   top: 0;
   background: rgba(247, 245, 242, 0.96);
   backdrop-filter: blur(8px);
   z-index: 20;
   border-bottom: 1px solid var(--line);
 }
 
 .nav-wrap {
   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: 1.15rem;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
   border-radius: 10px;
   background: var(--brand);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 0.9rem;
 }
 
 .nav-toggle {
   border: 1px solid var(--line);
   background: var(--surface);
   padding: 8px 12px;
   border-radius: 10px;
   font-weight: 600;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 10px;
   margin: 0;
   padding: 16px 0 0;
   list-style: none;
 }
 
 body.nav-open .nav-links {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 500;
   color: var(--muted);
 }
 
 .nav-links a:hover,
 .nav-links a:focus {
   color: var(--ink);
 }
 
 .hero {
   padding: 64px 0 40px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 24px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-top: 18px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 18px;
   border-radius: 999px;
   border: none;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--brand);
   color: var(--brand);
 }
 
 .card-grid,
 .stat-grid,
 .list-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card,
 .stat,
 .testimonial,
 .note {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .card h3 {
   margin-top: 0;
 }
 
 .icon {
   width: 36px;
   height: 36px;
   margin-bottom: 12px;
 }
 
 .quote {
   font-size: 1.2rem;
   font-style: italic;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .highlight {
   background: var(--brand);
   color: #fff;
   border-radius: var(--radius);
   padding: 24px;
 }
 
 .highlight a {
   color: #fff;
   text-decoration: underline;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .service-item {
   display: flex;
   flex-direction: column;
   gap: 10px;
   background: var(--surface);
   border-radius: var(--radius);
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .price {
   color: var(--brand);
   font-weight: 700;
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 6px;
   padding: 16px;
   border-radius: 12px;
   background: #f6f3ef;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: 14px;
   border: 1px solid var(--line);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   padding: 16px 18px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   display: none;
   padding: 0 18px 16px;
   color: var(--muted);
 }
 
 .faq-item.is-open .faq-answer {
   display: block;
 }
 
 footer {
   padding: 40px 0;
   border-top: 1px solid var(--line);
   background: var(--surface);
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   color: var(--muted);
 }
 
 .cookie-banner {
   position: fixed;
   left: 16px;
   right: 16px;
   bottom: 16px;
   background: var(--surface);
   border-radius: 16px;
   padding: 18px;
   box-shadow: var(--shadow);
   border: 1px solid var(--line);
   display: none;
   z-index: 30;
 }
 
 .cookie-banner.is-visible {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 12px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(31, 41, 55, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 16px;
   z-index: 40;
 }
 
 .cookie-modal.is-visible {
   display: flex;
 }
 
 .modal-content {
   background: var(--surface);
   border-radius: 18px;
   padding: 22px;
   width: min(520px, 94%);
   box-shadow: var(--shadow);
 }
 
 .modal-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
   margin-top: 16px;
 }
 
 .tag-list {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }
 
 .tag {
   background: #e9e2da;
   padding: 6px 12px;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     padding: 0;
     gap: 18px;
   }
 
   body.nav-open .nav-links {
     display: flex;
   }
 
   .hero-grid,
   .split,
   .card-grid,
   .stat-grid,
   .list-grid,
   .footer-grid {
     flex-direction: row;
   }
 
   .hero-grid > * {
     flex: 1;
   }
 
   .card-grid .card,
   .stat-grid .stat,
   .list-grid .card {
     flex: 1;
   }
 
   .hero-actions,
   .cookie-actions,
   .modal-actions {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-list {
     gap: 20px;
   }
 
   .service-item {
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
   }
 
   .service-item .service-info {
     max-width: 70%;
   }
 }
