 :root {
   --bg: #f6f3ee;
   --surface: #ffffff;
   --ink: #1b2631;
   --muted: #5a6b78;
   --brand: #1f4d6b;
   --brand-2: #2f7f7a;
   --accent: #d88a4b;
   --line: #e1d8cd;
   --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--ink);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 .container {
   width: min(1120px, 92%);
   margin: 0 auto;
 }
 
 .section {
   padding: 64px 0;
 }
 
 .section.alt {
   background: #efe8df;
 }
 
 .section.highlight {
   background: var(--brand);
   color: #fdfbf8;
 }
 
 .eyebrow {
   text-transform: uppercase;
   font-size: 0.8rem;
   letter-spacing: 0.16em;
   color: var(--accent);
   font-weight: 600;
 }
 
 .section-title {
   font-size: clamp(1.8rem, 3vw, 2.5rem);
   margin: 12px 0 24px;
 }
 
 .lead {
   font-size: 1.08rem;
   color: var(--muted);
   max-width: 680px;
 }
 
 header.site-header {
   position: sticky;
   top: 0;
   background: rgba(246, 243, 238, 0.94);
   backdrop-filter: blur(8px);
   border-bottom: 1px solid var(--line);
   z-index: 10;
 }
 
 .nav {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 0;
   gap: 16px;
 }
 
 .logo {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 700;
   color: var(--brand);
   font-size: 1.1rem;
 }
 
 .logo img {
   width: 34px;
   height: 34px;
 }
 
 .nav-links {
   display: flex;
   align-items: center;
   gap: 18px;
 }
 
 .nav-links a {
   font-weight: 500;
   color: var(--muted);
 }
 
 .nav-links a.active {
   color: var(--brand);
 }
 
 .menu-toggle {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   border: 1px solid var(--line);
   background: var(--surface);
   padding: 8px 12px;
   border-radius: 999px;
   cursor: pointer;
 }
 
 .mobile-nav {
   position: fixed;
   top: 0;
   right: -100%;
   height: 100%;
   width: min(320px, 80%);
   background: var(--surface);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   padding: 24px;
   gap: 18px;
   transition: right 0.3s ease;
   z-index: 20;
 }
 
 .mobile-nav.open {
   right: 0;
 }
 
 .mobile-nav a {
   font-size: 1.05rem;
   color: var(--ink);
 }
 
 .nav-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.35);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.3s ease;
   z-index: 15;
 }
 
 .nav-overlay.open {
   opacity: 1;
   pointer-events: auto;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: clamp(2.4rem, 4vw, 3.4rem);
   margin: 0;
 }
 
 .hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 18px;
   border-radius: 999px;
   border: 1px solid transparent;
   background: var(--brand);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--brand);
   border-color: var(--brand);
 }
 
 .pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 14px;
   border-radius: 999px;
   background: #fff;
   border: 1px solid var(--line);
   font-size: 0.9rem;
 }
 
 .card-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
 }
 
 .card {
   flex: 1 1 260px;
   background: var(--surface);
   border-radius: 18px;
   padding: 22px;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .card .icon {
   width: 42px;
   height: 42px;
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 28px;
 }
 
 .split .panel {
   flex: 1 1 320px;
   background: var(--surface);
   border-radius: 16px;
   padding: 24px;
   border: 1px solid var(--line);
 }
 
 .stats-bar {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .stat {
   flex: 1 1 180px;
   background: #fff8f0;
   padding: 18px;
   border-radius: 14px;
   border: 1px solid var(--line);
 }
 
 .stat strong {
   font-size: 1.6rem;
   color: var(--brand);
 }
 
 .testimonials {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .quote {
   background: #ffffff;
   border-left: 4px solid var(--accent);
   padding: 20px;
   border-radius: 12px;
   box-shadow: var(--shadow);
 }
 
 .industries {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
 }
 
 .industry {
   padding: 8px 16px;
   border-radius: 999px;
   background: #ffffff;
   border: 1px solid var(--line);
   font-size: 0.92rem;
 }
 
 .steps {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .step {
   display: flex;
   gap: 16px;
   align-items: flex-start;
 }
 
 .step-number {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: var(--brand);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
 }
 
 .comparison {
   display: flex;
   flex-wrap: wrap;
   gap: 18px;
 }
 
 .comparison .panel {
   flex: 1 1 260px;
   border: 1px solid var(--line);
   background: #ffffff;
   border-radius: 14px;
   padding: 20px;
 }
 
 .faq {
   display: flex;
   flex-direction: column;
   gap: 14px;
 }
 
 .faq-item {
   border: 1px solid var(--line);
   border-radius: 12px;
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   padding: 16px 18px;
   background: transparent;
   border: none;
   display: flex;
   justify-content: space-between;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-answer {
   padding: 0 18px 16px;
   color: var(--muted);
 }
 
 .footer {
   padding: 40px 0;
   border-top: 1px solid var(--line);
   background: #f0e7dc;
 }
 
 .footer-grid {
   display: flex;
   flex-wrap: wrap;
   gap: 24px;
 }
 
 .footer-col {
   flex: 1 1 220px;
 }
 
 .footer a {
   color: var(--muted);
   display: block;
   margin-bottom: 6px;
 }
 
 .service-list {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .service-item {
   display: flex;
   flex-direction: column;
   gap: 8px;
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 20px;
   background: var(--surface);
 }
 
 .price {
   font-weight: 700;
   color: var(--brand);
 }
 
 .info-block {
   background: #ffffff;
   padding: 22px;
   border-radius: 16px;
   border: 1px solid var(--line);
   display: flex;
   flex-direction: column;
   gap: 8px;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 16px;
   left: 50%;
   transform: translateX(-50%);
   width: min(900px, 92%);
   background: #fff;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
   border-radius: 16px;
   padding: 18px;
   display: flex;
   flex-direction: column;
   gap: 16px;
   z-index: 30;
 }
 
 .cookie-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.4);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 40;
 }
 
 .cookie-modal.open {
   display: flex;
 }
 
 .cookie-modal-content {
   background: #fff;
   padding: 24px;
   border-radius: 18px;
   width: min(560px, 92%);
   box-shadow: var(--shadow);
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .cookie-options {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-options label {
   display: flex;
   gap: 10px;
   align-items: center;
 }
 
 .divider {
   height: 1px;
   background: var(--line);
   border: none;
   margin: 24px 0;
 }
 
 @media (min-width: 768px) {
   .menu-toggle {
     display: none;
   }
 
   .mobile-nav,
   .nav-overlay {
     display: none;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .steps {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .step {
     flex: 1 1 240px;
   }
 }
