 :root {
   --primary: #2e556a;
   --primary-dark: #1f3d4b;
   --accent: #e6a54b;
   --accent-soft: #f7e2c2;
   --bg: #f6f7f8;
   --surface: #ffffff;
   --muted: #6b7a86;
   --text: #1c232b;
   --border: #d9e1e6;
 }
 
 * {
   box-sizing: border-box;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   margin: 0;
   font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
   color: var(--text);
   background: var(--bg);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   max-width: 100%;
   display: block;
 }
 
 .container {
   width: min(1180px, 92%);
   margin: 0 auto;
 }
 
 .site-header {
   background: var(--surface);
   border-bottom: 1px solid var(--border);
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .nav {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   padding: 1.2rem 0;
 }
 
 .nav-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
 }
 
 .brand {
   display: flex;
   flex-direction: column;
   font-weight: 700;
   letter-spacing: 0.03em;
 }
 
 .brand span {
   font-size: 0.85rem;
   color: var(--muted);
   font-weight: 500;
 }
 
 .menu-toggle {
   background: transparent;
   border: 1px solid var(--border);
   padding: 0.5rem 0.8rem;
   border-radius: 999px;
   font-size: 0.95rem;
   cursor: pointer;
 }
 
 .nav-links {
   display: none;
   flex-direction: column;
   gap: 0.9rem;
 }
 
 .nav-links.open {
   display: flex;
 }
 
 .nav-links a {
   font-weight: 600;
 }
 
 .nav-cta {
   display: flex;
   gap: 0.6rem;
   flex-wrap: wrap;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 0.7rem 1.4rem;
   border-radius: 999px;
   border: none;
   background: var(--primary);
   color: #fff;
   font-weight: 600;
   cursor: pointer;
 }
 
 .btn-outline {
   background: transparent;
   border: 1px solid var(--primary);
   color: var(--primary);
 }
 
 .section {
   padding: 3.5rem 0;
 }
 
 .section-alt {
   background: var(--surface);
 }
 
 .section-header {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
   margin-bottom: 2rem;
 }
 
 .section-header h2 {
   margin: 0;
   font-size: 2rem;
 }
 
 .section-header p {
   margin: 0;
   color: var(--muted);
 }
 
 .hero {
   padding: 4rem 0 3rem;
 }
 
 .hero-wrap {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .hero-card {
   background: var(--surface);
   padding: 2rem;
   border-radius: 24px;
   border: 1px solid var(--border);
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .highlight-grid {
   display: flex;
   flex-direction: column;
   gap: 1.4rem;
 }
 
 .card-row {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 1.6rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .card h3 {
   margin: 0;
   font-size: 1.3rem;
 }
 
 .card p {
   margin: 0;
   color: var(--muted);
 }
 
 .feature-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .feature-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .feature-icon {
   width: 40px;
   height: 40px;
   border-radius: 12px;
   background: var(--accent-soft);
   display: flex;
   align-items: center;
   justify-content: center;
 }
 
 .stats-bar {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .stat {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 1rem 1.4rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
 }
 
 .stat strong {
   font-size: 1.4rem;
 }
 
 .quote {
   background: var(--primary-dark);
   color: #fff;
   border-radius: 24px;
   padding: 2rem;
 }
 
 .quote p {
   margin: 0;
 }
 
 .timeline {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .timeline-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
 }
 
 .timeline-item span {
   font-weight: 700;
   color: var(--primary);
 }
 
 .service-card {
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 1.5rem;
   background: var(--surface);
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .service-card .price {
   font-weight: 700;
   color: var(--primary);
 }
 
 .comparison {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .comparison-column {
   border: 1px solid var(--border);
   background: var(--surface);
   border-radius: 18px;
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
 }
 
 .faq-list {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .faq-item {
   border: 1px solid var(--border);
   border-radius: 16px;
   background: var(--surface);
   overflow: hidden;
 }
 
 .faq-item button {
   width: 100%;
   text-align: left;
   padding: 1rem 1.4rem;
   background: transparent;
   border: none;
   font-weight: 600;
   cursor: pointer;
 }
 
 .faq-item .faq-panel {
   padding: 0 1.4rem 1.2rem;
   color: var(--muted);
 }
 
 .contact-grid {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
 }
 
 .info-block {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 1.5rem;
 }
 
 .footer {
   background: var(--primary-dark);
   color: #fff;
   padding: 3rem 0 2rem;
 }
 
 .footer-wrap {
   display: flex;
   flex-direction: column;
   gap: 2rem;
 }
 
 .footer a {
   color: #fff;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 0.6rem;
 }
 
 .footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.2);
   padding-top: 1.2rem;
   font-size: 0.9rem;
   color: rgba(255, 255, 255, 0.7);
 }
 
 .cookie-banner {
   position: fixed;
   bottom: 1.5rem;
   left: 50%;
   transform: translateX(-50%);
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 1.5rem;
   width: min(960px, 92%);
   display: none;
   flex-direction: column;
   gap: 1rem;
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
   z-index: 20;
 }
 
 .cookie-actions {
   display: flex;
   gap: 0.6rem;
   flex-wrap: wrap;
 }
 
 .cookie-modal {
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   background: rgba(0, 0, 0, 0.45);
   z-index: 30;
 }
 
 .cookie-modal .modal-content {
   background: var(--surface);
   border-radius: 24px;
   padding: 2rem;
   width: min(640px, 90%);
   display: flex;
   flex-direction: column;
   gap: 1.2rem;
 }
 
 .cookie-toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   padding: 0.8rem 1rem;
   border-radius: 14px;
   border: 1px solid var(--border);
 }
 
 .cookie-switch {
   width: 44px;
   height: 24px;
   border-radius: 999px;
   background: var(--border);
   position: relative;
   cursor: pointer;
 }
 
 .cookie-switch::after {
   content: "";
   position: absolute;
   top: 3px;
   left: 3px;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   background: #fff;
   transition: transform 0.2s ease;
 }
 
 .cookie-switch.active {
   background: var(--primary);
 }
 
 .cookie-switch.active::after {
   transform: translateX(20px);
 }
 
 .visually-hidden {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   border: 0;
 }
 
 @media (min-width: 900px) {
   .nav {
     flex-direction: row;
     align-items: center;
     justify-content: space-between;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .nav-links {
     display: flex;
     flex-direction: row;
     align-items: center;
     gap: 1.4rem;
   }
 
   .hero-wrap {
     flex-direction: row;
     align-items: center;
   }
 
   .highlight-grid,
   .card-row,
   .stats-bar,
   .comparison,
   .contact-grid {
     flex-direction: row;
   }
 
   .highlight-grid > *,
   .card-row > *,
   .stats-bar > *,
   .comparison > *,
   .contact-grid > * {
     flex: 1;
   }
 
   .footer-wrap {
     flex-direction: row;
     justify-content: space-between;
   }
 
   .footer-links {
     flex-direction: row;
     gap: 1.4rem;
     flex-wrap: wrap;
   }
 }
