 :root {
   --bg: #f7f4ef;
   --bg-alt: #ffffff;
   --text: #1e1f22;
   --muted: #5a606b;
   --accent: #355c7d;
   --accent-strong: #2b4a62;
   --highlight: #f0c75e;
   --border: #e2ded6;
   --shadow: 0 12px 30px rgba(30, 31, 34, 0.08);
 }
 
 * {
   box-sizing: border-box;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 h1,
 h2,
 h3 {
   line-height: 1.25;
   margin: 0 0 0.8rem;
 }
 
 p {
   margin: 0 0 1rem;
   color: var(--muted);
 }
 
 .container {
   width: min(1120px, 90%);
   margin: 0 auto;
 }
 
 header {
   background: var(--bg-alt);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 1rem 0;
   gap: 1.5rem;
 }
 
 .brand {
   font-weight: 700;
   font-size: 1.2rem;
   color: var(--accent);
   display: flex;
   align-items: center;
   gap: 0.6rem;
 }
 
 .brand-mark {
   width: 34px;
   height: 34px;
 }
 
 .nav-toggle {
   border: 1px solid var(--border);
   background: var(--bg-alt);
   padding: 0.45rem 0.75rem;
   border-radius: 999px;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 0.5rem;
 }
 
 .nav-menu {
   display: none;
   flex-direction: column;
   gap: 0.75rem;
   background: var(--bg-alt);
   padding: 1rem;
   border-radius: 16px;
   box-shadow: var(--shadow);
   position: absolute;
   right: 5%;
   top: 70px;
   min-width: 200px;
 }
 
 .nav-menu a {
   padding: 0.4rem 0;
   color: var(--muted);
   font-weight: 600;
 }
 
 .nav-menu a.active {
   color: var(--accent);
 }
 
 .nav-open .nav-menu {
   display: flex;
 }
 
 .nav-desktop {
   display: none;
   gap: 1.5rem;
   align-items: center;
 }
 
 .nav-desktop a {
   color: var(--muted);
   font-weight: 600;
 }
 
 .nav-desktop a.active {
   color: var(--accent);
 }
 
 main {
   padding: 2.5rem 0 4rem;
 }
 
 .section {
   padding: 2.5rem 0;
 }
 
 .section.alt {
   background: var(--bg-alt);
 }
 
 .section.highlight {
   background: #f4efe6;
 }
 
 .hero {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--bg-alt);
   border-radius: 24px;
   padding: 2rem;
   box-shadow: var(--shadow);
 }
 
 .hero-actions {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.75rem 1.4rem;
   border-radius: 999px;
   border: 1px solid transparent;
   font-weight: 600;
   cursor: pointer;
   transition: transform 0.2s ease, box-shadow 0.2s ease;
 }
 
 .btn.primary {
   background: var(--accent);
   color: #fff;
 }
 
 .btn.secondary {
   border-color: var(--accent);
   color: var(--accent);
   background: transparent;
 }
 
 .btn:hover,
 .btn:focus-visible {
   transform: translateY(-2px);
   box-shadow: var(--shadow);
 }
 
 .pill-list {
   display: flex;
   flex-wrap: wrap;
   gap: 0.6rem;
 }
 
 .pill {
   background: #e7edf2;
   color: var(--accent-strong);
   padding: 0.4rem 0.9rem;
   border-radius: 999px;
   font-weight: 600;
   font-size: 0.85rem;
 }
 
 .card-list {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--bg-alt);
   border-radius: 20px;
   padding: 1.6rem;
   box-shadow: var(--shadow);
   border: 1px solid transparent;
 }
 
 .card strong {
   display: block;
   margin-bottom: 0.5rem;
   color: var(--text);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .stat-bar {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .stat {
   background: var(--bg-alt);
   border-radius: 18px;
   padding: 1.4rem;
   display: flex;
   flex-direction: column;
   gap: 0.4rem;
 }
 
 .stat span {
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--accent);
 }
 
 .quote {
   background: var(--accent);
   color: #fff;
   padding: 2rem;
   border-radius: 24px;
 }
 
 .quote p {
   color: #fefefe;
 }
 
 .feature-row {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .feature {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature svg {
   flex-shrink: 0;
   width: 32px;
   height: 32px;
 }
 
 .testimonial {
   border-left: 3px solid var(--highlight);
   padding-left: 1rem;
 }
 
 .faq-item {
   border-bottom: 1px solid var(--border);
   padding: 1rem 0;
 }
 
 .faq-question {
   width: 100%;
   text-align: left;
   background: none;
   border: none;
   font-weight: 600;
   font-size: 1rem;
   padding: 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1rem;
 }
 
 .faq-answer {
   display: none;
   padding-top: 0.8rem;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .service-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .service-price {
   font-weight: 700;
   color: var(--accent);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .comparison-item {
   background: var(--bg-alt);
   border-radius: 18px;
   padding: 1.3rem;
   border: 1px solid var(--border);
 }
 
 .cta-panel {
   background: var(--accent-strong);
   color: #fff;
   padding: 2.5rem;
   border-radius: 26px;
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .cta-panel p {
   color: #e9eef3;
 }
 
 footer {
   background: var(--text);
   color: #f7f4ef;
   padding: 2.5rem 0;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .footer-links a {
   color: #f7f4ef;
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.5rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--bg-alt);
   box-shadow: var(--shadow);
   border-radius: 18px;
   padding: 1.2rem;
   width: min(95%, 520px);
   display: none;
   z-index: 50;
 }
 
 .cookie-banner.active {
   display: block;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-top: 1rem;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   background: rgba(30, 31, 34, 0.45);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 60;
 }
 
 .cookie-modal.active {
   display: flex;
 }
 
 .cookie-modal-content {
   background: var(--bg-alt);
   border-radius: 22px;
   padding: 2rem;
   width: min(92%, 520px);
   box-shadow: var(--shadow);
 }
 
 .toggle-group {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
   margin: 1rem 0;
 }
 
 .toggle {
   display: flex;
   justify-content: space-between;
   align-items: center;
   background: #f6f2eb;
   border-radius: 12px;
   padding: 0.6rem 1rem;
   border: 1px solid var(--border);
 }
 
 .toggle button {
   border: none;
   background: var(--accent);
   color: #fff;
   padding: 0.35rem 0.9rem;
   border-radius: 999px;
   font-size: 0.85rem;
 }
 
 @media (min-width: 768px) {
   .nav-toggle {
     display: none;
   }
 
   .nav-menu {
     display: none !important;
   }
 
   .nav-desktop {
     display: flex;
   }
 
   .hero {
     flex-direction: row;
     align-items: center;
   }
 
   .hero-card,
   .hero-visual {
     flex: 1;
   }
 
   .hero-actions {
     flex-direction: row;
     align-items: center;
   }
 
   .card-list,
   .service-grid,
   .comparison {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card,
   .comparison-item {
     flex: 1 1 260px;
   }
 
   .split {
     flex-direction: row;
     align-items: flex-start;
   }
 
   .feature-row {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .feature {
     flex: 1 1 220px;
   }
 
   .stat-bar {
     flex-direction: row;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 1.2rem;
   }
 
   .cookie-actions {
     flex-direction: row;
   }
 }
