:root {
      --bg: #07111f;
      --bg-soft: rgba(14, 26, 45, 0.72);
      --panel: rgba(16, 27, 46, 0.68);
      --panel-strong: rgba(19, 33, 56, 0.92);
      --text: #edf4ff;
      --muted: #9db0d0;
      --line: rgba(173, 196, 255, 0.14);
      --primary: #6ea8fe;
      --primary-2: #89f7fe;
      --accent: #7c5cff;
      --success: #86efac;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
      --radius: 22px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background:
        radial-gradient(circle at 10% 20%, rgba(110, 168, 254, 0.16), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(124, 92, 255, 0.16), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(137, 247, 254, 0.09), transparent 28%),
        linear-gradient(180deg, #050c18 0%, #081221 52%, #07111f 100%);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .blur-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.5;
      pointer-events: none;
      z-index: -1;
    }

    .orb-1 { width: 220px; height: 220px; background: rgba(110, 168, 254, 0.22); top: 120px; left: -40px; }
    .orb-2 { width: 280px; height: 280px; background: rgba(124, 92, 255, 0.18); top: 260px; right: -80px; }
    .orb-3 { width: 220px; height: 220px; background: rgba(137, 247, 254, 0.12); bottom: 80px; left: 25%; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(16px);
      background: rgba(5, 12, 24, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      gap: 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0.2px;
    }

    .brand-logo {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(110, 168, 254, 0.2), rgba(124, 92, 255, 0.22));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 8px 24px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      flex-shrink: 0;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: #fff;
    }

    .footer-brand img {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .nav-links a:hover { color: #fff; }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(135deg, rgba(110, 168, 254, 0.18), rgba(124, 92, 255, 0.2));
      color: #fff;
      font-weight: 600;
      transition: 0.25s ease;
    }

    .nav-cta:hover,
    .primary-btn:hover,
    .secondary-btn:hover,
    .submit-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    }

    .hero {
      position: relative;
      padding: 86px 0 52px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--primary-2);
      font-size: 0.9rem;
      margin-bottom: 20px;
    }

    .eyebrow .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 0 0 6px rgba(137, 247, 254, 0.08);
    }

    h1 {
      margin: 0;
      font-size: clamp(2.7rem, 6vw, 5rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

    .gradient-text {
      background: linear-gradient(135deg, #ffffff 15%, #9dd3ff 45%, #8ef5ff 70%, #b99cff 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      margin: 22px 0 0;
      font-size: 1.08rem;
      line-height: 1.8;
      color: var(--muted);
      max-width: 680px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .primary-btn,
    .secondary-btn,
    .submit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: 0.25s ease;
      cursor: pointer;
      font-size: 0.98rem;
    }

    .primary-btn {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      box-shadow: 0 16px 32px rgba(110, 168, 254, 0.2);
    }

    .secondary-btn {
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.09);
    }

    .hero-metrics {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .metric-card {
      min-width: 150px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.07);
      box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.02);
    }

    .metric-card strong {
      display: block;
      font-size: 1.35rem;
      margin-bottom: 6px;
    }

    .metric-card span {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .hero-panel {
      position: relative;
      padding: 22px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.09);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .panel-glow {
      position: absolute;
      inset: -2px;
      background: linear-gradient(135deg, rgba(110, 168, 254, 0.15), rgba(124, 92, 255, 0.12), rgba(137, 247, 254, 0.12));
      filter: blur(24px);
      z-index: 0;
    }

    .dashboard {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 16px;
    }

    .dashboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 20px;
      background: var(--panel-strong);
      border: 1px solid var(--line);
    }

    .dashboard-title {
      font-weight: 700;
      margin-bottom: 4px;
    }

    .dashboard-sub {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .status-pill {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(134, 239, 172, 0.12);
      color: var(--success);
      font-weight: 700;
      font-size: 0.84rem;
      white-space: nowrap;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 16px;
    }

    .glass-card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 18px;
      backdrop-filter: blur(14px);
    }

    .card-heading {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .mini-lines {
      display: grid;
      gap: 12px;
    }

    .mini-line {
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(110, 168, 254, 0.85), rgba(137, 247, 254, 0.4));
      position: relative;
      overflow: hidden;
    }

    .mini-line::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      border-radius: inherit;
      background: rgba(255, 255, 255, 0.06);
    }

    .w-90::after { width: 10%; }
    .w-70::after { width: 30%; }
    .w-55::after { width: 45%; }
    .w-40::after { width: 60%; }

    .chat-box {
      display: grid;
      gap: 10px;
    }

    .message {
      padding: 12px 14px;
      border-radius: 16px;
      font-size: 0.94rem;
      line-height: 1.6;
    }

    .message.user {
      background: rgba(124, 92, 255, 0.16);
      border: 1px solid rgba(124, 92, 255, 0.25);
    }

    .message.ai {
      background: rgba(110, 168, 254, 0.12);
      border: 1px solid rgba(110, 168, 254, 0.2);
      color: #d9e8ff;
    }

    section {
      padding: 44px 0;
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 28px;
    }

    .section-head .label {
      color: var(--primary-2);
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 12px;
      display: inline-block;
    }

    .section-head h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin: 0 0 14px;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
      font-size: 1rem;
    }

    .services-grid,
    .benefits-grid,
    .process-grid,
    .stats-grid {
      display: grid;
      gap: 18px;
    }

    .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .stats-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-top: 20px;
    }

    .partners-track {
      position: relative;
      overflow: hidden;
      margin-top: 10px;
      -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
      mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }

    .partners-grid {
      display: flex;
      gap: 18px;
      width: max-content;
      will-change: transform;
      user-select: none;
    }

    .partners-grid > * {
      flex: 0 0 min(240px, 75vw);
    }

    .partner-card {
      padding: 22px 18px;
      min-height: 110px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.015);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #e8f1ff;
      font-weight: 700;
      letter-spacing: 0.04em;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .partner-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top, rgba(110, 168, 254, 0.12), transparent 55%);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .partner-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
      border-color: rgba(110, 168, 254, 0.22);
    }

    .partner-card:hover::before { opacity: 1; }

    .partner-logo {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
    }

    .partner-logo img {
      width: 84px;
      height: auto;
      margin-bottom: 8px;
      filter: grayscale(100%) brightness(1.08);
      opacity: 0.82;
      transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    }

    .partner-card:hover .partner-logo img {
      filter: grayscale(0%) brightness(1);
      opacity: 1;
      transform: translateY(-2px) scale(1.03);
    }

    .partner-logo strong { font-size: 1rem; }
    .partner-logo span {
      font-size: 0.8rem;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .service-card,
    .benefit-card,
    .process-card,
    .stat-card,
    .contact-card,
    .case-card {
      padding: 24px;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.015);
    }

    .service-icon,
    .benefit-icon,
    .process-number {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(110, 168, 254, 0.18), rgba(124, 92, 255, 0.18));
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 1.2rem;
      font-weight: 800;
      color: #fff;
    }

    .service-card h3,
    .benefit-card h3,
    .process-card h3,
    .case-card h3,
    .contact-card h3 {
      margin: 0 0 10px;
      font-size: 1.15rem;
    }

    .service-card p,
    .benefit-card p,
    .process-card p,
    .case-card p,
    .contact-card p,
    .stat-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.97rem;
    }

    .showcase {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .case-card .tag,
    .mini-tag {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--primary-2);
      font-size: 0.82rem;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .case-result {
      margin-top: 18px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .case-result span,
    .stat-card strong {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 800;
      font-size: 1.4rem;
      color: #fff;
    }

    .stat-card strong { margin-bottom: 8px; }

    .contact-wrap {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 20px;
      align-items: start;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .contact-item {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid rgba(255, 255, 255, 0.07);
      color: var(--muted);
    }

    form {
      display: grid;
      gap: 14px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    input, textarea, select {
      width: 100%;
      padding: 15px 16px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      background: rgba(255, 255, 255, 0.04);
      color: #fff;
      font: inherit;
      outline: none;
      transition: 0.2s ease;
    }

    input::placeholder,
    textarea::placeholder { color: #90a4c3; }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: rgba(110, 168, 254, 0.7);
      box-shadow: 0 0 0 4px rgba(110, 168, 254, 0.12);
    }

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

    .submit-btn { width: 100%; }

    footer {
      padding: 24px 0 40px;
      color: var(--muted);
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      font-size: 0.94rem;
    }

    .social-links {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #dfeaff;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 0 20px rgba(255, 255, 255, 0.02);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
    }

    .social-btn svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .social-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
      border-color: rgba(255, 255, 255, 0.18);
      color: #ffffff;
    }

    .social-btn.linkedin:hover {
      background: linear-gradient(135deg, rgba(10, 102, 194, 0.28), rgba(10, 102, 194, 0.12));
      border-color: rgba(10, 102, 194, 0.55);
    }

    .social-btn.email:hover {
      background: linear-gradient(135deg, rgba(110, 168, 254, 0.28), rgba(137, 247, 254, 0.12));
      border-color: rgba(110, 168, 254, 0.5);
    }

    .social-btn.twitter:hover {
      background: linear-gradient(135deg, rgba(29, 161, 242, 0.28), rgba(29, 161, 242, 0.12));
      border-color: rgba(29, 161, 242, 0.5);
    }

    .social-btn.github:hover {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
      border-color: rgba(255, 255, 255, 0.28);
    }

    .social-btn.whatsapp:hover {
      background: linear-gradient(135deg, rgba(37, 211, 102, 0.28), rgba(37, 211, 102, 0.12));
      border-color: rgba(37, 211, 102, 0.55);
    }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .contact-wrap,
      .showcase,
      .dashboard-grid,
      .services-grid,
      .benefits-grid,
      .process-grid,
      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .benefits-grid,
      .process-grid,
      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 780px) {
      .nav { flex-wrap: wrap; }
      .nav-links { order: 3; width: 100%; justify-content: center; }
      .hero { padding-top: 56px; }
      .hero-grid,
      .contact-wrap,
      .showcase,
      .services-grid,
      .benefits-grid,
      .process-grid,
      .stats-grid,
      .dashboard-grid,
      .grid-2 {
        grid-template-columns: 1fr;
      }

      h1 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .footer-row { flex-direction: column; align-items: flex-start; }
    }
    
    /* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa0ZL7SUc.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2ZL7SUc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1pL7SUc.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2pL7SUc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa25L7SUc.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
    

.progress-bar{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0;
  z-index:60;
  background:linear-gradient(90deg,var(--primary),var(--primary-2),var(--accent));
  box-shadow:0 0 18px rgba(110,168,254,.45);
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:32px 32px;
  mask-image:radial-gradient(circle at center, black 30%, transparent 85%);
  pointer-events:none;
  z-index:-2;
}

.topbar{ transition: background .25s ease, border-color .25s ease; }
.topbar.scrolled{
  background: rgba(5, 12, 24, 0.88);
  border-bottom-color: rgba(255,255,255,.1);
}

.nav-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-size:1.1rem;
  cursor:pointer;
}

.nav-links a{
  position:relative;
  transition:color .2s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after{ transform:scaleX(1); }

.metric-card,
.service-card,
.benefit-card,
.process-card,
.stat-card,
.case-card,
.contact-card{
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.metric-card:hover,
.service-card:hover,
.benefit-card:hover,
.process-card:hover,
.stat-card:hover,
.case-card:hover,
.contact-card:hover{
  transform: translateY(-6px);
  border-color: rgba(110,168,254,.18);
  box-shadow: 0 20px 44px rgba(0,0,0,.22), inset 0 0 30px rgba(255,255,255,.015);
}

.trust-strip{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.trust-strip span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-size:.9rem;
}

.hero-panel::after{
  content:"";
  position:absolute;
  inset:auto -20% -35% auto;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(137,247,254,.18), transparent 65%);
  pointer-events:none;
}

.partner-card{ min-height: 148px; }
.partner-card:hover .partner-logo strong{ color:#fff; }
.partner-logo strong, .partner-logo span{ transition:color .25s ease; }
.partner-card:hover .partner-logo span{ color:#cbd8ef; }

.contact-mini-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.contact-mini-stats div{
  padding:14px 12px;
  border-radius:16px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.07);
}
.contact-mini-stats strong{
  display:block;
  font-size:1.15rem;
  color:#fff;
  margin-bottom:4px;
}
.contact-mini-stats span{
  color:var(--muted);
  font-size:.88rem;
}

.footer-brand span{ opacity:.92; }

@media (max-width: 780px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; order:2; }
  .nav-cta{ display:none; }
  .nav-links{
    display:none;
    width:100%;
    order:4;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:16px;
    border-radius:18px;
    background:rgba(10,18,32,.86);
    border:1px solid rgba(255,255,255,.08);
  }
  .nav-links.open{ display:flex; }
  .nav-links a::after{ bottom:-4px; }
  .contact-mini-stats{ grid-template-columns:1fr; }
}
