 :root {
   --bg: #f7f5f2;
   --surface: #ffffff;
   --ink: #1f2428;
   --muted: #5a6872;
   --accent: #1f7a67;
   --accent-dark: #135347;
   --warm: #f0e7dc;
   --line: #d9d5cf;
   --radius: 18px;
   --shadow: 0 18px 40px rgba(31, 36, 40, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1100px, 90vw);
   margin: 0 auto;
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section.alt {
   background: var(--surface);
 }
 
 .section.warm {
   background: var(--warm);
 }
 
 .tag {
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   color: var(--muted);
 }
 
 .headline {
   font-size: clamp(2rem, 3vw, 2.8rem);
   margin: 12px 0 16px;
 }
 
 .lead {
   font-size: 1.1rem;
   color: var(--muted);
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--accent);
   color: #fff;
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   border: none;
 }
 
 .button.secondary {
   background: transparent;
   border: 1px solid var(--accent);
   color: var(--accent-dark);
 }
 
 .button.ghost {
   background: transparent;
   color: var(--accent-dark);
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 20px;
 }
 
 .brand {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   letter-spacing: 0.02em;
 }
 
 .brand svg {
   width: 34px;
   height: 34px;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 12px;
   background: var(--surface);
   position: absolute;
   top: 64px;
   right: 5vw;
   padding: 18px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
 }
 
 .nav-links a {
   font-weight: 500;
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .menu-toggle {
   background: transparent;
   border: 1px solid var(--line);
   border-radius: 999px;
   padding: 10px 14px;
   font-weight: 600;
 }
 
 .hero {
   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-wrap: wrap;
   gap: 12px;
 }
 
 .feature-grid,
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--surface);
   padding: 22px;
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card.highlight {
   background: #e8f3f0;
 }
 
 .stats-row,
 .pill-row {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 18px;
   text-align: center;
 }
 
 .stat strong {
   display: block;
   font-size: 1.6rem;
 }
 
 .process {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .process-step {
   display: flex;
   gap: 14px;
   align-items: flex-start;
 }
 
 .process-step span {
   background: var(--accent);
   color: #fff;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .testimonial {
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 20px;
   border-radius: var(--radius);
 }
 
 .quote {
   font-size: 1.1rem;
   font-style: italic;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 16px;
   border: 1px solid var(--line);
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: transparent;
   border: none;
   display: flex;
   justify-content: space-between;
   gap: 12px;
   font-weight: 600;
 }
 
 .faq-answer {
   margin-top: 10px;
   color: var(--muted);
   display: none;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .footer {
   background: #111618;
   color: #f5f5f5;
   padding: 40px 0;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer a {
   color: #f5f5f5;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 18px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border-radius: var(--radius);
   box-shadow: var(--shadow);
   padding: 18px;
   width: min(560px, 92vw);
   display: none;
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 12px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 18, 20, 0.5);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   z-index: 30;
 }
 
 .modal.show {
   display: flex;
 }
 
 .modal-panel {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 24px;
   width: min(640px, 92vw);
   box-shadow: var(--shadow);
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 0;
   border-bottom: 1px solid var(--line);
 }
 
 .toggle-row button {
   border: 1px solid var(--line);
   background: transparent;
   padding: 6px 12px;
   border-radius: 999px;
 }
 
 .compare-table {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .compare-row {
   background: var(--surface);
   border-radius: var(--radius);
   padding: 16px;
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent-dark);
 }
 
 .notice {
   background: #fff7e6;
   border-left: 4px solid #f2b74e;
   padding: 16px;
   border-radius: var(--radius);
 }
 
 .site-map-links {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 @media (min-width: 768px) {
   .nav-links {
     position: static;
     flex-direction: row;
     background: transparent;
     box-shadow: none;
     padding: 0;
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .feature-grid,
   .card-grid,
   .stats-row,
   .pill-row,
   .process,
   .footer-grid,
   .compare-table {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature-grid .card,
   .card-grid .card,
   .stats-row .stat,
   .pill-row .card,
   .compare-row {
     flex: 1 1 calc(50% - 16px);
   }
 
   .footer-grid {
     justify-content: space-between;
   }
 }
 
 @media (min-width: 1024px) {
   .feature-grid .card,
   .card-grid .card,
   .stats-row .stat,
   .pill-row .card,
   .compare-row {
     flex: 1 1 calc(33.333% - 16px);
   }
 }
