:root {
      --brand: #1d63ed;
      --brand-soft: #dbeafe;
      --brand-blue: #eff6ff;
      --text: #1c2434;
      --text-muted: #4a5565;
      --section-band: #f3f8fe;
      --footer-bg: #0f1a33;
      --white: #fff;
      --shadow: 0 8px 30px rgba(15, 26, 51, 0.08);
      --radius: 10px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Inter", system-ui, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--text);
      background: var(--white);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      width: min(1500px, 100% - 40px);
      margin-inline: auto;
    }

    @media (min-width: 769px) {
      .container {
        width: min(1500px, 100% - 80px);
      }
    }

    a {
      color: var(--brand);
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    /* Header */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #e9edf5;
      box-shadow: 0 1px 4px 0 rgb(0 0 0 / 10%);
    }

    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0;
    }

    .logo-link img {
      height: 52px;
      width: auto;
    }

    .nav-toggle {
      display: none;
      border: 1px solid #dbe2ef;
      background: var(--white);
      border-radius: var(--radius);
      padding: 0.45rem 0.65rem;
      cursor: pointer;
      font: inherit;
    }

    .nav-links {
      display: flex;
      gap: 1.75rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nav-links a {
      color: var(--text);
      font-weight: 500;
      font-size: 0.95rem;
    }

    .nav-links a:hover:not(.is-active) {
      color: var(--brand);
      text-decoration: none;
    }

    .nav-links a.is-active {
      color: #155dfc;
      font-weight: 600;
    }

    .nav-links a.is-active:hover {
      color: #155dfc;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .nav-bar {
        justify-content: flex-start;
      }

      .nav-toggle {
        display: inline-flex;
        align-items: center;
        margin-left: auto;
      }

      header .nav-bar nav {
        flex: 0 0 0;
        width: 0;
        min-width: 0;
        overflow: visible;
      }

      .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        width: 100%;
        box-sizing: border-box;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        border: none;
        border-top: 1px solid #e9edf5;
        border-radius: 0;
        box-shadow: 0 12px 24px rgba(15, 26, 51, 0.08);
        padding: 0.65rem clamp(1rem, 5vw, 2rem);
        margin: 0;
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-links li {
        border-bottom: 1px solid #f0f3f9;
      }

      .nav-links li:last-child {
        border-bottom: none;
      }

      .nav-links a {
        display: block;
        padding: 0.65rem 0.5rem;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.72rem 1.35rem;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      border: none;
      transition: opacity 0.15s ease, transform 0.08s ease;
    }

    .btn-primary {
      background: var(--brand);
      color: var(--white);
    }

    .btn-primary:hover {
      opacity: 0.92;
      text-decoration: none;
    }

    .btn-full {
      width: 100%;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.35rem 0.85rem;
      border-radius: 999px;
      font-size: 0.8125rem;
      font-weight: 600;
      background: var(--brand-soft);
      color: var(--brand);
      margin-bottom: 1rem;
    }

    .badge svg {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      color: var(--brand);
    }

    section {
      scroll-margin-top: 90px;
    }

    /* Hero */
    .hero {
      padding: 3rem 0 3.25rem;
      background: var(--section-band);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.75rem;
      align-items: center;
    }

    .hero h1 {
      margin: 0 0 1rem;
      font-size: clamp(1.75rem, 3.8vw, 2.65rem);
      line-height: 1.18;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .hero-lead {
      margin: 0 0 1.5rem;
      color: var(--text-muted);
      font-size: 1.0625rem;
    }

    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 1.25rem 1.75rem;
      margin-bottom: 2rem;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      color: var(--text);
    }

    .hero-feature svg {
      width: 22px;
      height: 22px;
      color: var(--brand);
      flex-shrink: 0;
    }

    .hero-visual {
      position: relative;
    }

    .hero-visual img.main {
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
      aspect-ratio: 5/4;
      box-shadow: var(--shadow);
    }

    .hero-card {
      position: absolute;
      left: -8px;
      bottom: -12px;
      background: var(--white);
      border-radius: 14px;
      padding: 1.05rem 1.35rem;
      box-shadow: 0 12px 36px rgba(15, 26, 51, 0.15);
      border: 1px solid #eaf0fb;
    }

    .hero-card strong {
      display: block;
      font-size: 1.85rem;
      color: var(--brand);
      line-height: 1.05;
      font-weight: 700;
    }

    .hero-card span {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual .main {
        aspect-ratio: 16 / 11;
      }

      .hero-card {
        left: auto;
        right: max(16px, 4vw);
        bottom: -16px;
      }
    }

    /* Sections common */
    .section-title {
      text-align: center;
      font-size: clamp(1.6rem, 2.8vw, 2.1rem);
      font-weight: 700;
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
    }

    .section-intro {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 2.75rem;
      color: var(--text-muted);
    }

    /* About */
    .about {
      padding: 3.5rem 0;
      background: var(--white);
    }

    .about-text-block {
      max-width: 800px;
      margin: 0 auto 3rem;
      text-align: left;
      color: var(--text-muted);
    }

    .about-text-block p {
      margin: 0 0 1rem;
    }

    .about-text-block p:last-child {
      margin-bottom: 0;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin-bottom: 3.25rem;
    }

    .stat {
      background: var(--brand-blue);
      border-radius: var(--radius);
      padding: 1.35rem 1rem;
      text-align: center;
    }

    .stat strong {
      display: block;
      font-size: 1.75rem;
      color: var(--brand);
      font-weight: 700;
      margin-bottom: 0.35rem;
    }

    .stat span {
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .sectors-band {
      background: #fbf9fa;
      padding: 2rem clamp(1.25rem, 3vw, 2.75rem);
      border-radius: 10px;
    }

    .sectors-band .subsection-title {
      margin-top: 0;
    }

    .subsection-title {
      text-align: center;
      font-size: 1.25rem;
      font-weight: 700;
      margin: 0 0 2rem;
      color: var(--text);
    }

    .sector-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem 1.25rem;
    }

    .sector-item {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-size: 0.9375rem;
      font-weight: 500;
    }

    .sector-item svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--brand);
    }

    @media (max-width: 900px) {
      .stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .sector-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .sector-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Services */
    .services {
      padding: 3.5rem 0 4rem;
      background: #fbf9fa;
    }

    .service-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.35rem;
      margin-bottom: 2rem;
    }

    .service-card {
      border: 1px solid #e5ecf7;
      border-radius: calc(var(--radius) + 2px);
      background: var(--white);
      box-shadow: 0 2px 12px rgba(15, 26, 51, 0.04);
      padding: 1.6rem;
    }

    .service-icon-wrap {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--brand-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      border: 1px solid #e0e9fc;
    }

    .service-icon-wrap svg {
      width: 26px;
      height: 26px;
      color: var(--brand);
    }

    .service-cards .service-card:nth-child(2) .service-icon-wrap svg,
    .service-cards .service-card:nth-child(3) .service-icon-wrap svg {
      color: #155dfc;
    }

    .service-card h3 {
      margin: 0 0 1rem;
      font-size: 1.125rem;
      font-weight: 700;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.62rem;
      font-size: 0.935rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .check-list li:last-child {
      margin-bottom: 0;
    }

    .check-list svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 3px;
      color: var(--brand);
    }

    @media (max-width: 900px) {
      .service-cards {
        grid-template-columns: 1fr;
      }
    }

    .dual-blocks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }

    .info-box {
      border: 1px solid #e5ecf7;
      border-radius: var(--radius);
      background: var(--white);
      padding: 2rem;
      box-shadow: 0 2px 10px rgba(15, 26, 51, 0.04);
    }

    .info-box h3 {
      margin: 0 0 0.75rem;
      font-size: 1.1rem;
    }

    .info-box p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .dual-blocks {
        grid-template-columns: 1fr;
      }
    }

    .lang-banner {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: var(--brand);
      color: var(--white);
      border-radius: 14px;
      padding: 1.35rem 1.5rem;
    }

    .lang-banner svg.banner-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      color: var(--white);
      stroke: currentColor;
      margin-top: 2px;
    }

    .lang-banner h3 {
      margin: 0 0 0.35rem;
      font-size: 1.1rem;
    }

    .lang-banner p {
      margin: 0;
      opacity: 0.95;
      font-size: 0.95rem;
    }

    /* Contact */
    .contact {
      padding: 3.5rem 0 4rem;
      background: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: start;
    }

    .contact-card-blue {
      background: var(--brand);
      color: var(--white);
      border-radius: 14px;
      padding: 1.8rem 1.8rem;
      margin-bottom: 1rem;
    }

    .contact-card-blue h3 {
      margin: 0 0 0.25rem;
      font-size: 1.125rem;
    }

    .contact-card-blue .person {
      margin: 0 0 1rem;
      font-weight: 500;
      opacity: 0.95;
      font-size: 0.95rem;
    }

    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      margin-bottom: 0.65rem;
      font-size: 0.9375rem;
    }

    .contact-row:last-of-type {
      margin-bottom: 0;
    }

    .contact-card-blue svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      opacity: 0.95;
    }

    .contact-card-blue a {
      color: var(--white);
      text-underline-offset: 2px;
    }

    .contact-card-plain {
      background: var(--white);
      margin-bottom: 1rem;
      padding: 1rem 0 0rem 0;
    }

    .contact-card-plain:last-child {
      margin-bottom: 0;
    }

    .contact-card-plain h4 {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin: 0 0 0.85rem;
      font-size: 1rem;
    }

    .contact-card-plain h4 .contact-heading-icon {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      background: #dbeafe;
      border-radius: 16px;
    }

    .contact-card-plain h4 .contact-heading-icon svg {
      width: 22px;
      height: 22px;
      color: var(--brand);
    }

    .contact-card-plain p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.94rem;
      padding-left: calc(48px + 0.75rem);
    }

    .form-card {
      background: #fbf9fa;
      border-radius: 14px;
      padding: 1.85rem;
    }

    .form-card h3 {
      margin: 0 0 1.35rem;
      font-size: 1.35rem;
    }

    label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .field {
      margin-bottom: 1rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
      width: 100%;
      padding: 0.7rem 0.95rem;
      border-radius: var(--radius);
      border: 1px solid #d6deec;
      font: inherit;
      background: var(--white);
    }

    input:focus,
    textarea:focus,
    select:focus {
      outline: 2px solid rgba(29, 99, 237, 0.25);
      border-color: var(--brand);
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-footer {
      margin-top: 1.25rem;
    }

    .form-status {
      display: none;
      margin-bottom: 1rem;
      padding: 0.75rem 1rem;
      border-radius: var(--radius);
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .form-status.is-visible {
      display: block;
    }

    .form-status--ok {
      background: #ecfdf5;
      border: 1px solid #a7f3d0;
      color: #065f46;
    }

    .form-status--error {
      background: #fef2f2;
      border: 1px solid #fecaca;
      color: #991b1b;
    }

    .form-privacy {
      text-align: center;
      margin-top: 0.85rem;
      font-size: 0.875rem;
      color: var(--text-muted);
    }

    .form-privacy a {
      font-weight: 600;
    }

    .form-recaptcha-legal {
      margin: 0.75rem 0 0;
      font-size: 0.75rem;
      line-height: 1.45;
      color: var(--text-muted);
    }

    .form-recaptcha-legal a {
      font-weight: 500;
    }

    @media (max-width: 900px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Footer */
    footer.site-footer {
      background: var(--footer-bg);
      color: rgba(255, 255, 255, 0.88);
      padding: 2.75rem 0 0;
      font-size: 0.9rem;
    }

    footer .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 2rem;
      padding-bottom: 2rem;
    }

    footer .footer-brand img {
      height: 40px;
      width: auto;
      margin-bottom: 0.75rem;
    }

    footer .footer-brand p {
      margin: 0;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.55;
    }

    footer h4 {
      margin: 0 0 0.85rem;
      font-size: 0.95rem;
      font-weight: 700;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    footer li {
      margin-bottom: 0.55rem;
    }

    footer a {
      color: rgba(255, 255, 255, 0.78);
    }

    footer a:hover {
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      padding: 1.1rem 0;
      text-align: center;
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.8125rem;
    }

    @media (max-width: 768px) {
      footer .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Cookie bar (visual style similar to classic CMP footer bar) */
    .cookie-overlay {
      position: fixed;
      inset: 0;
      background: rgba(21, 30, 48, 0.45);
      z-index: 90;
      display: none;
    }

    .cookie-overlay.is-open {
      display: block;
    }

    .cookie-bar {
      position: fixed;
      left: max(14px, 3vw);
      right: max(14px, 3vw);
      bottom: max(14px, 3vw);
      z-index: 95;
      display: none;
      background: #fff;
      border: 1px solid #cdd5e6;
      border-radius: var(--radius);
      box-shadow: 0 10px 40px rgba(15, 26, 51, 0.18), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
      padding: 1rem 1.15rem;
    }

    .cookie-bar.is-visible {
      display: block;
    }

    .cookie-bar-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.85rem;
      justify-content: space-between;
    }

    .cookie-bar-inner p {
      margin: 0;
      flex: 1 1 280px;
      font-size: 0.8975rem;
      color: #333c4d;
      line-height: 1.52;
      max-width: 720px;
    }

    .cookie-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      align-items: center;
    }

    .btn-cookie-secondary {
      background: #f2f4f8;
      color: #1c2434;
      border: 1px solid #d2d9e6;
      font-weight: 600;
      padding: 0.55rem 1rem;
      border-radius: 6px;
      cursor: pointer;
      font: inherit;
    }

    .btn-cookie-secondary:hover {
      background: #e8ecf3;
    }

    .btn-cookie-primary {
      background: #2b6cb0;
      color: #fff;
      border: 1px solid #2b6cb0;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      font-size: 0.75rem;
      padding: 0.6rem 1.1rem;
      border-radius: 5px;
      cursor: pointer;
      font: inherit;
    }

    .btn-cookie-primary:hover {
      filter: brightness(1.05);
    }

    .cookie-panel {
      position: fixed;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 100;
      width: min(520px, 100% - 32px);
      max-height: min(82vh, 640px);
      overflow: auto;
      background: #fff;
      border: 1px solid #cdd5e6;
      border-radius: var(--radius);
      box-shadow: 0 16px 50px rgba(15, 26, 51, 0.22);
      display: none;
    }

    .cookie-panel.is-open {
      display: block;
    }

    .cookie-panel-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.15rem;
      border-bottom: 1px solid #e5ecf7;
    }

    .cookie-panel-header h4 {
      margin: 0;
      font-size: 1.05rem;
    }

    .cookie-close {
      border: none;
      background: transparent;
      padding: 0.25rem;
      cursor: pointer;
      border-radius: 6px;
      line-height: 0;
    }

    .cookie-close:hover {
      background: #f2f4f8;
    }

    .cookie-close svg {
      width: 22px;
      height: 22px;
    }

    .cookie-panel-body {
      padding: 1rem 1.15rem 1.35rem;
    }

    .cookie-panel-body .lead {
      font-size: 0.8975rem;
      color: #4a5568;
      margin-bottom: 1rem;
      line-height: 1.5;
    }

    .cookie-category {
      border: 1px solid #e5ecf7;
      border-radius: 8px;
      padding: 0.75rem 0.85rem;
      margin-bottom: 0.65rem;
    }

    .cookie-category-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.65rem;
    }

    .cookie-category-row strong {
      font-size: 0.8875rem;
    }

    .cookie-category .caption {
      font-size: 0.75rem;
      color: #64748b;
      margin-left: auto;
      margin-right: 0.5rem;
      font-weight: 600;
    }

    .cookie-switch {
      position: relative;
      width: 44px;
      height: 24px;
      flex-shrink: 0;
    }

    .cookie-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .cookie-slider {
      position: absolute;
      cursor: pointer;
      inset: 0;
      background: #cbd5e1;
      border-radius: 999px;
      transition: 0.2s;
    }

    .cookie-slider::before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 3px;
      bottom: 3px;
      background: white;
      border-radius: 50%;
      transition: 0.2s;
    }

    .cookie-switch input:checked + .cookie-slider {
      background: var(--brand);
    }

    .cookie-switch input:checked + .cookie-slider::before {
      transform: translateX(20px);
    }

    .cookie-switch input:disabled + .cookie-slider {
      opacity: 0.7;
      cursor: not-allowed;
    }

    .cookie-desc {
      font-size: 0.82rem;
      color: #64748b;
      margin-top: 0.55rem;
      line-height: 1.45;
    }

    .cookie-panel-footer {
      padding: 0.85rem 1.15rem 1.1rem;
      border-top: 1px solid #e5ecf7;
      display: flex;
      justify-content: flex-end;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }