 :root {
   --bg: #f7f6f2;
   --surface: #ffffff;
   --ink: #1c1f26;
   --muted: #4e5969;
   --brand: #0c5f5a;
   --brand-light: #d7eee9;
   --accent: #c17a35;
   --line: #d9dde3;
   --shadow: 0 18px 45px rgba(12, 24, 26, 0.08);
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 body {
   font-family: "Inter", "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;
 }
 
 ul {
   list-style: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section-alt {
   background: var(--surface);
 }
 
 .section-soft {
   background: var(--brand-light);
 }
 
 .section-title {
   font-size: clamp(1.6rem, 2vw, 2.3rem);
   margin-bottom: 20px;
 }
 
 .section-lead {
   color: var(--muted);
   max-width: 720px;
   margin-bottom: 32px;
 }
 
 .button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   border: 2px solid transparent;
   transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
 }
 
 .button:hover,
 .button:focus {
   background: #0a4f4b;
 }
 
 .button.secondary {
   background: transparent;
   color: var(--brand);
   border-color: var(--brand);
 }
 
 .button.small {
   padding: 10px 16px;
   font-size: 0.95rem;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--line);
   position: sticky;
   top: 0;
   z-index: 100;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
 }
 
 .logo {
   font-weight: 700;
   font-size: 1.1rem;
   color: var(--brand);
   letter-spacing: 0.5px;
 }
 
 .site-nav {
   display: flex;
   align-items: center;
 }
 
 .nav-toggle {
   background: transparent;
   border: 1px solid var(--line);
   border-radius: 8px;
   padding: 8px 12px;
   font-weight: 600;
   color: var(--ink);
 }
 
 .nav-panel {
   position: absolute;
   right: 4%;
   top: 64px;
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 20px;
   box-shadow: var(--shadow);
   display: none;
   width: min(320px, 92vw);
 }
 
 .nav-open .nav-panel {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .nav-list {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .nav-list a {
   font-weight: 600;
 }
 
 .nav-cta {
   display: flex;
 }
 
 .hero {
   padding: 80px 0 64px;
 }
 
 .hero-grid {
   display: flex;
   flex-direction: column;
   gap: 32px;
 }
 
 .hero h1 {
   font-size: clamp(2.1rem, 3vw, 3.3rem);
   line-height: 1.2;
   margin-bottom: 16px;
 }
 
 .hero p {
   color: var(--muted);
   margin-bottom: 24px;
 }
 
 .hero-cards {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 18px;
   padding: 20px;
   box-shadow: var(--shadow);
 }
 
 .card h3 {
   margin-bottom: 8px;
 }
 
 .grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .stats {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .stat {
   background: var(--surface);
   border-left: 4px solid var(--accent);
   padding: 16px;
 }
 
 .stat strong {
   display: block;
   font-size: 1.4rem;
 }
 
 .icon-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .icon-item {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .icon-item svg {
   width: 40px;
   height: 40px;
   flex-shrink: 0;
 }
 
 .highlight-panel {
   background: var(--surface);
   border-radius: 22px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .quote {
   font-size: 1.15rem;
   font-weight: 600;
   margin-bottom: 12px;
 }
 
 .service-cards {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-card {
   border: 1px solid var(--line);
   border-radius: 20px;
   padding: 20px;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--brand);
 }
 
 .comparison-table {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .comparison-row {
   display: flex;
   flex-direction: column;
   gap: 8px;
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   background: var(--surface);
 }
 
 .comparison-row span {
   font-weight: 600;
 }
 
 .testimonial {
   background: var(--surface);
   border-radius: 18px;
   padding: 20px;
   border: 1px solid var(--line);
 }
 
 .testimonial strong {
   display: block;
   margin-top: 10px;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 14px;
   background: var(--surface);
 }
 
 .faq-question {
   width: 100%;
   background: transparent;
   border: none;
   text-align: left;
   padding: 16px;
   font-weight: 600;
 }
 
 .faq-answer {
   padding: 0 16px 16px;
   display: none;
   color: var(--muted);
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .footer {
   background: #14181f;
   color: #dfe4ea;
   padding: 40px 0;
 }
 
 .footer a {
   color: #dfe4ea;
 }
 
 .footer-grid {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .footer small {
   color: #98a2b3;
 }
 
 .banner {
   position: fixed;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   box-shadow: var(--shadow);
   display: none;
   width: min(680px, 92%);
   z-index: 200;
 }
 
 .banner.visible {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .banner-actions {
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .modal {
   position: fixed;
   inset: 0;
   background: rgba(15, 20, 24, 0.55);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 300;
 }
 
 .modal.visible {
   display: flex;
 }
 
 .modal-content {
   background: var(--surface);
   border-radius: 20px;
   padding: 24px;
   width: min(520px, 92%);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .modal-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .checkbox {
   display: flex;
   align-items: center;
   gap: 10px;
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
 }
 
 .pill {
   background: var(--brand-light);
   padding: 8px 12px;
   border-radius: 999px;
   font-size: 0.95rem;
 }
 
 .info-grid {
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .address-block {
   border: 1px solid var(--line);
   border-radius: 16px;
   padding: 16px;
   background: var(--surface);
 }
 
 .muted {
   color: var(--muted);
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-panel {
     position: static;
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 20px;
     border: none;
     box-shadow: none;
     padding: 0;
     width: auto;
     background: transparent;
   }
 
   .nav-list {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-grid {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .hero-cards {
     flex-direction: row;
   }
 
   .grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .grid > * {
     flex: 1 1 250px;
   }
 
   .split {
     flex-direction: row;
     align-items: center;
   }
 
   .stats {
     flex-direction: row;
   }
 
   .service-cards {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .service-card {
     flex: 1 1 260px;
   }
 
   .comparison-table {
     flex-direction: row;
   }
 
   .comparison-row {
     flex: 1 1 240px;
   }
 
   .footer-grid {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .banner-actions,
   .modal-actions {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .info-grid {
     flex-direction: row;
   }
 }
