﻿:root {
      --navy: #07172a;
      --blue: #002d62;
      --red: #ce1126;
      --flag-white: #ffffff;
      --green: var(--red);
      --amber: var(--red);
      --ink: #152033;
      --muted: #637083;
      --line: #dfe6ee;
      --soft: #f5f8fb;
      --white: #ffffff;
      --shadow: 0 20px 50px rgba(9, 32, 63, 0.13);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    .shell {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid rgba(223, 230, 238, 0.9);
      backdrop-filter: blur(16px);
    }

    .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand img {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }

    .brand strong {
      display: block;
      color: var(--navy);
      font-size: 1.05rem;
      line-height: 1.1;
    }

    .brand span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: #40506a;
      font-size: 0.94rem;
    }

    .nav-links a:hover {
      color: var(--blue);
    }

    .nav-login {
      color: var(--red);
      font-weight: 800;
    }

    .language-switcher {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--white);
    }

    .language-switcher button {
      min-width: 42px;
      min-height: 34px;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: var(--muted);
      font: inherit;
      font-size: 0.82rem;
      font-weight: 800;
      cursor: pointer;
    }

    .language-switcher button[aria-pressed="true"] {
      background: var(--blue);
      color: var(--white);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 6px;
      font-weight: 750;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      box-shadow: 0 12px 30px rgba(206, 17, 38, 0.24);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--navy);
      border-color: rgba(9, 32, 63, 0.18);
    }

    .hero {
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.54) 58%, rgba(255, 255, 255, 0.06) 100%),
        url("hero-automation.png") center right / cover no-repeat;
      color: var(--navy);
      min-height: 720px;
      display: flex;
      align-items: center;
      padding: 82px 0 64px;
    }

    .page-hero {
      background: linear-gradient(110deg, rgba(0, 45, 98, 0.98), rgba(206, 17, 38, 0.86));
      color: var(--white);
      padding: 92px 0 74px;
    }

    .page-hero h1 {
      max-width: 880px;
      margin: 18px 0;
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      line-height: 1;
    }

    .page-hero p {
      max-width: 720px;
      margin: 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: 1.13rem;
    }

    .page-section {
      padding: 76px 0;
    }

    .login-card {
      max-width: 460px;
      margin: 0 auto;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border: 1px solid rgba(0, 45, 98, 0.18);
      border-radius: 999px;
      color: var(--blue);
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
    }

    h1 {
      max-width: 760px;
      margin: 20px 0 18px;
      font-size: clamp(2.6rem, 6vw, 5.4rem);
      line-height: 0.96;
      letter-spacing: 0;
      overflow-wrap: normal;
    }

    .hero p {
      max-width: 650px;
      margin: 0;
      color: #30445f;
      font-size: 1.18rem;
      overflow-wrap: anywhere;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 44px;
      max-width: 740px;
    }

    .proof-item {
      border-left: 3px solid var(--red);
      padding: 8px 14px;
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 12px 30px rgba(0, 45, 98, 0.08);
    }

    .proof-item strong {
      display: block;
      font-size: 1.05rem;
    }

    .proof-item span {
      color: #40506a;
      font-size: 0.9rem;
    }

    .demo-panel {
      background: var(--white);
      color: var(--ink);
      border-radius: 8px;
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .demo-panel h2 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 1.35rem;
    }

    .demo-panel p {
      color: var(--muted);
      font-size: 0.96rem;
      margin: 0 0 20px;
    }

    .form-grid {
      display: grid;
      gap: 12px;
    }

    .form-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      opacity: 0;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 46px;
      border: 1px solid var(--line);
      border-radius: 6px;
      padding: 11px 12px;
      color: var(--ink);
      font: inherit;
      background: var(--white);
    }

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

    input:focus,
    select:focus,
    textarea:focus {
      outline: 3px solid rgba(206, 17, 38, 0.16);
      border-color: var(--red);
    }

    .submit-note {
      color: var(--muted);
      font-size: 0.8rem;
      margin: 12px 0 0;
    }

    .form-status {
      border-radius: 6px;
      font-size: 0.92rem;
      font-weight: 700;
      margin: 12px 0 0;
      padding: 11px 12px;
    }

    .form-status[data-state="pending"] {
      background: #eef5ff;
      color: var(--blue);
    }

    .form-status[data-state="success"] {
      background: #eef9f1;
      color: #17633a;
    }

    .form-status[data-state="error"] {
      background: #fff0f2;
      color: var(--red);
    }

    section {
      padding: 86px 0;
    }

    .section-head {
      max-width: 740px;
      margin-bottom: 36px;
    }

    .section-kicker {
      color: var(--red);
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    h2 {
      margin: 8px 0 12px;
      color: var(--navy);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      line-height: 1.08;
      letter-spacing: 0;
    }

    .section-head p,
    .wide-copy {
      color: var(--muted);
      font-size: 1.05rem;
      margin: 0;
    }

    .problem {
      background: var(--soft);
    }

    .problem-grid,
    .service-grid,
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .card {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 24px;
      min-height: 100%;
    }

    .card strong {
      display: block;
      color: var(--navy);
      font-size: 1.08rem;
      margin-bottom: 8px;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .services {
      background: var(--white);
    }

    .services-hero {
      min-height: 640px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.95) 34%, rgba(255, 255, 255, 0.52) 58%, rgba(255, 255, 255, 0.04) 100%),
        url("services-automation.png") center right / cover no-repeat;
      border-bottom: 1px solid var(--line);
    }

    .services-hero-content {
      padding: 88px 0 74px;
    }

    .services-hero h1 {
      max-width: 660px;
      margin: 20px 0 18px;
      color: var(--navy);
      font-size: clamp(2.55rem, 5.2vw, 5rem);
      line-height: 1;
      letter-spacing: 0;
    }

    .services-hero p {
      max-width: 620px;
      margin: 0;
      color: #30445f;
      font-size: 1.15rem;
    }

    .service-card {
      border-top: 4px solid var(--blue);
    }

    .service-card:nth-child(2) {
      border-top-color: var(--red);
    }

    .service-card:nth-child(3) {
      border-top-color: var(--blue);
    }

    .service-card ul,
    .check-list {
      margin: 16px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      color: #46556b;
    }

    .service-card li,
    .check-list li {
      position: relative;
      padding-left: 22px;
    }

    .service-card li::before,
    .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.72em;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--red);
    }

    .about {
      background: var(--navy);
      color: var(--white);
    }

    .about h2 {
      color: var(--white);
    }

    .about .section-kicker,
    .about .wide-copy {
      color: rgba(255, 255, 255, 0.78);
    }

    .about-hero {
      min-height: 650px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0.04) 100%),
        url("about-automation.png") center right / cover no-repeat;
      color: var(--navy);
      border-bottom: 1px solid var(--line);
    }

    .about-hero-content {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      padding: 92px 0 78px;
    }

    .about-hero h2 {
      max-width: 680px;
      color: var(--navy);
      font-size: clamp(2.45rem, 4.8vw, 4.8rem);
      line-height: 1;
    }

    .about-hero .section-kicker {
      color: var(--red);
    }

    .about-hero .wide-copy {
      max-width: 620px;
      color: #30445f;
    }

    .about-hero .about-points {
      max-width: 620px;
    }

    .about-hero .about-point strong {
      color: var(--navy);
    }

    .about-hero .about-point span {
      color: #46556b;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 46px;
      align-items: center;
    }

    .about-logo {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      padding: 34px;
    }

    .about-logo img {
      margin: 0 auto;
      max-height: 260px;
      object-fit: contain;
    }

    .about-points {
      display: grid;
      gap: 16px;
      margin-top: 24px;
    }

    .about-point {
      border-left: 3px solid var(--red);
      padding-left: 16px;
    }

    .about-point strong {
      display: block;
      color: var(--white);
    }

    .about-point span {
      color: rgba(255, 255, 255, 0.73);
    }

    .process {
      background: var(--soft);
    }

    .steps {
      counter-reset: step;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .step {
      counter-increment: step;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 22px;
    }

    .step::before {
      content: counter(step, decimal-leading-zero);
      display: inline-flex;
      color: var(--red);
      font-weight: 850;
      margin-bottom: 34px;
    }

    .step strong {
      display: block;
      color: var(--navy);
      margin-bottom: 8px;
      font-size: 1.04rem;
    }

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

    .trust {
      background: var(--white);
    }

    .vision {
      min-height: 680px;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(247, 249, 252, 0.99) 0%, rgba(247, 249, 252, 0.96) 34%, rgba(247, 249, 252, 0.58) 62%, rgba(247, 249, 252, 0.04) 100%),
        url("vision-automation.png") center right / cover no-repeat;
    }

    .vision-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.78fr);
      gap: 26px;
      align-items: start;
    }

    .vision-note {
      background: var(--white);
      border: 1px solid #d9e2ef;
      border-radius: 8px;
      padding: 24px;
    }

    .vision-note strong {
      display: block;
      color: var(--navy);
      margin-bottom: 8px;
      font-size: 1.08rem;
    }

    .vision-note p {
      margin: 0;
      color: var(--muted);
    }

    .roadmap-list {
      display: grid;
      gap: 12px;
    }

    .roadmap-item {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(233, 246, 255, 0.22));
      backdrop-filter: blur(18px) saturate(1.35);
      border: 1px solid rgba(255, 255, 255, 0.62);
      border-radius: 8px;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 18px 42px rgba(0, 45, 98, 0.12);
      padding: 18px 20px;
    }

    .roadmap-item strong {
      display: block;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .roadmap-item span {
      color: var(--muted);
    }

    .cta-band {
      background: linear-gradient(100deg, var(--blue), var(--red));
      color: var(--white);
      padding: 58px 0;
    }

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .cta-inner h2 {
      color: var(--white);
      margin: 0 0 10px;
      font-size: clamp(1.8rem, 3vw, 2.7rem);
    }

    .cta-inner p {
      max-width: 660px;
      margin: 0;
      color: rgba(255, 255, 255, 0.84);
    }

    .contact {
      background: var(--soft);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
      gap: 32px;
      align-items: start;
    }

    .contact-box {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 28px;
    }

    .contact-box h3 {
      margin: 0 0 12px;
      color: var(--navy);
      font-size: 1.5rem;
    }

    .contact-box p {
      color: var(--muted);
      margin: 0 0 18px;
    }

    .contact-box a {
      color: var(--blue);
      font-weight: 750;
    }

    .contact-phone {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 0 0 18px;
    }

    .contact-phone a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--soft);
    }

    footer {
      background: #07172a;
      color: rgba(255, 255, 255, 0.72);
      padding: 36px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-inner strong {
      color: var(--white);
    }

    @media (max-width: 920px) {
      .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
      }

      .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .language-switcher {
        align-self: flex-start;
      }

      .hero {
        min-height: auto;
        padding: 64px 0 52px;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
          url("hero-automation.png") center top / cover no-repeat;
      }

      .services-hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
          url("services-automation.png") center top / cover no-repeat;
      }

      .services-hero-content {
        padding: 64px 0 52px;
      }

      .about-hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.9)),
          url("about-automation.png") center top / cover no-repeat;
      }

      .about-hero-content {
        padding: 64px 0 52px;
      }

      .vision {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(247, 249, 252, 0.97), rgba(247, 249, 252, 0.92)),
          url("vision-automation.png") center top / cover no-repeat;
      }

      .hero-grid,
      .about-grid,
      .vision-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .problem-grid,
      .service-grid,
      .trust-grid,
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cta-inner {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 620px) {
      .shell {
        width: min(calc(100% - 28px), 1160px);
      }

      .brand span {
        white-space: normal;
      }

      .nav-links {
        gap: 16px;
        font-size: 0.9rem;
      }

      .eyebrow {
        max-width: 100%;
        align-items: flex-start;
        white-space: normal;
      }

      h1 {
        max-width: 100%;
        font-size: clamp(2rem, 9.4vw, 2.45rem);
        line-height: 1.1;
      }

      h2 {
        max-width: 12ch;
        font-size: clamp(1.65rem, 7vw, 1.95rem);
        line-height: 1.1;
      }

      .section-head p,
      .wide-copy,
      .card p,
      .vision-note p,
      .roadmap-item span,
      .contact-box p,
      .demo-panel p {
        max-width: 28ch;
      }

      .roadmap-item span,
      .about-point span {
        display: block;
      }

      p,
      li,
      span,
      strong,
      input,
      select,
      textarea {
        overflow-wrap: anywhere;
      }

      .card,
      .roadmap-item,
      .vision-note,
      .demo-panel,
      .contact-box,
      .section-head {
        min-width: 0;
        max-width: 100%;
      }

      .services-hero h1 {
        max-width: 12ch;
        font-size: clamp(2rem, 8.4vw, 2.25rem);
        line-height: 1.08;
      }

      .services-hero p {
        max-width: 31ch;
        font-size: 1.03rem;
      }

      .about-hero h2 {
        max-width: 13ch;
        font-size: clamp(2rem, 8.4vw, 2.25rem);
        line-height: 1.08;
      }

      .about-hero .wide-copy,
      .about-hero .about-points {
        max-width: 31ch;
      }

      .hero p {
        width: 100%;
        max-width: 32ch;
        font-size: 1.05rem;
      }

      .demo-panel,
      .contact-box {
        padding: 24px;
      }

      .hero-proof,
      .problem-grid,
      .service-grid,
      .trust-grid,
      .steps {
        grid-template-columns: 1fr;
      }

      .hero-actions .btn,
      .demo-panel .btn,
      .contact-box .btn {
        width: 100%;
      }

      .footer-inner,
      .footer-inner > div {
        min-width: 0;
        max-width: 100%;
      }

      .footer-inner div div {
        max-width: 28ch;
        overflow-wrap: anywhere;
      }

      section {
        padding: 64px 0;
      }
    }
