 :root {
   --brand-dark: #0b1c2c;
   --brand-mid: #1c3b5a;
   --brand-accent: #2a7de1;
   --brand-soft: #e8f0fb;
   --text: #1c2733;
   --muted: #5b6b7c;
   --bg: #f6f8fb;
   --white: #ffffff;
 }
 
 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }
 
 html {
   scroll-behavior: smooth;
 }
 
 body {
   font-family: "Inter", "Segoe UI", Arial, sans-serif;
   background: var(--bg);
   color: var(--text);
   line-height: 1.6;
 }
 
 a {
   color: inherit;
   text-decoration: none;
 }
 
 img,
 svg {
   display: block;
 }
 
 .container {
   width: 100%;
   max-width: 1120px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 .header {
   background: var(--white);
   border-bottom: 1px solid #dde4ee;
   position: sticky;
   top: 0;
   z-index: 10;
 }
 
 .header-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   padding: 16px 0;
 }
 
 .logo {
   font-size: 1.1rem;
   font-weight: 700;
   color: var(--brand-dark);
   letter-spacing: 0.02em;
 }
 
 .desktop-nav {
   display: none;
   align-items: center;
   gap: 18px;
   font-weight: 500;
 }
 
 .menu-toggle {
   border: 1px solid var(--brand-mid);
   background: transparent;
   color: var(--brand-mid);
   padding: 8px 14px;
   border-radius: 999px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .mobile-nav {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 16px 20px 20px;
   border-top: 1px solid #dde4ee;
   background: var(--white);
 }
 
 .mobile-nav.open {
   display: flex;
 }
 
 .hero {
   padding: 64px 0 40px;
   background: var(--white);
 }
 
 .hero-content {
   display: flex;
   flex-direction: column;
   gap: 24px;
 }
 
 .hero h1 {
   font-size: 2.1rem;
   color: var(--brand-dark);
   line-height: 1.2;
 }
 
 .hero p {
   color: var(--muted);
   max-width: 620px;
 }
 
 .button-row {
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 12px 20px;
   border-radius: 999px;
   border: 1px solid var(--brand-accent);
   font-weight: 600;
   cursor: pointer;
   background: var(--brand-accent);
   color: var(--white);
 }
 
 .btn.secondary {
   background: transparent;
   color: var(--brand-accent);
 }
 
 .section {
   padding: 56px 0;
 }
 
 .section-title {
   display: flex;
   flex-direction: column;
   gap: 12px;
   margin-bottom: 28px;
 }
 
 .section-title h2 {
   font-size: 1.6rem;
   color: var(--brand-dark);
 }
 
 .section-title p {
   color: var(--muted);
   max-width: 640px;
 }
 
 .card-grid {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .card {
   background: var(--white);
   border-radius: 18px;
   padding: 20px;
   box-shadow: 0 12px 24px rgba(12, 30, 55, 0.06);
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .card h3 {
   color: var(--brand-mid);
   font-size: 1.1rem;
 }
 
 .card p {
   color: var(--muted);
 }
 
 .price {
   font-weight: 700;
   color: var(--brand-accent);
 }
 
 .split {
   display: flex;
   flex-direction: column;
   gap: 20px;
 }
 
 .testimonial {
   background: var(--brand-soft);
   border-radius: 18px;
   padding: 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .testimonial p {
   color: var(--brand-mid);
 }
 
 .testimonial span {
   font-weight: 600;
   color: var(--brand-dark);
 }
 
 .tag-row {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
 }
 
 .tag {
   padding: 8px 14px;
   border-radius: 999px;
   background: var(--brand-soft);
   color: var(--brand-mid);
   font-weight: 500;
   font-size: 0.9rem;
 }
 
 .contact-card {
   background: var(--white);
   border-radius: 18px;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 12px;
 }
 
 .footer {
   background: var(--brand-dark);
   color: var(--white);
   padding: 32px 0;
 }
 
 .footer-inner {
   display: flex;
   flex-direction: column;
   gap: 18px;
 }
 
 .footer-links {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .footer-links a,
 .footer-links button {
   color: var(--white);
   background: transparent;
   border: none;
   text-align: left;
   cursor: pointer;
   font-size: 0.95rem;
 }
 
 .cookie-banner {
   position: fixed;
   left: 0;
   right: 0;
   bottom: 0;
   background: var(--brand-dark);
   color: var(--white);
   padding: 18px 20px;
   display: none;
   flex-direction: column;
   gap: 14px;
   z-index: 20;
 }
 
 .cookie-banner.show {
   display: flex;
 }
 
 .cookie-actions {
   display: flex;
   flex-direction: column;
   gap: 10px;
 }
 
 .cookie-actions .btn {
   width: 100%;
 }
 
 .modal-backdrop {
   position: fixed;
   inset: 0;
   background: rgba(5, 10, 18, 0.7);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 24px;
   z-index: 30;
 }
 
 .modal-backdrop.active {
   display: flex;
 }
 
 .modal {
   background: var(--white);
   border-radius: 18px;
   max-width: 520px;
   width: 100%;
   padding: 24px;
   display: flex;
   flex-direction: column;
   gap: 16px;
 }
 
 .toggle-row {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px 0;
   border-bottom: 1px solid #e2e8f2;
 }
 
 .toggle-row:last-child {
   border-bottom: none;
 }
 
 .toggle-btn {
   border: 1px solid var(--brand-accent);
   color: var(--brand-accent);
   background: transparent;
   border-radius: 999px;
   padding: 6px 14px;
   font-weight: 600;
   cursor: pointer;
 }
 
 .toggle-btn[aria-pressed="true"] {
   background: var(--brand-accent);
   color: var(--white);
 }
 
 .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: 768px) {
   .button-row,
   .cookie-actions {
     flex-direction: row;
     align-items: center;
   }
 
   .card-grid {
     flex-direction: row;
     flex-wrap: wrap;
   }
 
   .card {
     flex: 1 1 280px;
   }
 
   .split {
     flex-direction: row;
   }
 
   .split > * {
     flex: 1 1 0;
   }
 
   .footer-links {
     flex-direction: row;
     flex-wrap: wrap;
     gap: 16px;
   }
 }
 
 @media (min-width: 900px) {
   .desktop-nav {
     display: flex;
   }
 
   .menu-toggle {
     display: none;
   }
 
   .mobile-nav {
     display: none;
   }
 }
