.elementor-3425 .elementor-element.elementor-element-fd8f1f5{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */:root {
      --bg: #080b12;
      --panel: rgba(255, 255, 255, 0.07);
      --panel-strong: rgba(255, 255, 255, 0.12);
      --text: #f5f7fb;
      --muted: #aeb7c8;
      --line: rgba(255, 255, 255, 0.16);
      --accent: #5BE1E6;
      --accent-2: #18b8c0;
      --accent-3: #65ffa3;
      --radius: 28px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      min-height: 100vh;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 15% 10%, rgba(91, 225, 230, 0.22), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(24, 184, 192, 0.24), transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(101, 255, 163, 0.14), transparent 25%),
        var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, black, transparent 78%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    p { color: var(--muted); line-height: 1.65; }
    strong { color: var(--text); }
    img { max-width: 100%; display: block; }

    .container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

    .cursor-light {
      position: fixed;
      width: 360px;
      height: 360px;
      pointer-events: none;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(91,225,230,0.12), transparent 62%);
      transform: translate(-50%, -50%);
      z-index: 1;
      mix-blend-mode: screen;
    }

    .nav {
      position: sticky;
      top: 16px;
      z-index: 50;
      margin: 16px auto 0;
      width: min(1180px, calc(100% - 36px));
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(8, 11, 18, 0.64);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
    }

    .brand { display: flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: -0.04em; }
    .brand-dot {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: conic-gradient(from 180deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
      box-shadow: 0 0 30px rgba(91, 225, 230, 0.5);
    }

    .nav-links { display: flex; gap: 6px; align-items: center; }
    .nav-links a {
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      transition: 0.25s ease;
    }
    .nav-links a:hover { color: var(--text); background: var(--panel-strong); }

    .hero { position: relative; padding: 110px 0 86px; }
    .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 38px; align-items: center; }

    .eyebrow {
      width: fit-content;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      margin-bottom: 20px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(12px);
      font-size: 14px;
    }

    .pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-3);
      box-shadow: 0 0 0 0 rgba(101, 255, 163, 0.7);
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      70% { box-shadow: 0 0 0 12px rgba(101,255,163,0); }
      100% { box-shadow: 0 0 0 0 rgba(101,255,163,0); }
    }

    h1 {
      max-width: 980px;
      font-size: clamp(44px, 7.8vw, 96px) !important;
      line-height: 0.94;
      letter-spacing: -0.09em;
      margin-bottom: 24px;
    }

    h2 { font-size: clamp(34px, 5vw, 64px); letter-spacing: -0.065em; line-height: 1; }
    h3 { font-size: 24px; letter-spacing: -0.04em; margin-bottom: 10px; }
    h4 { font-size: 15px; letter-spacing: -0.01em; color: var(--text); }
    h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 8px; }

    .lead {
      max-width: 760px;
      color: var(--muted);
      font-size: clamp(17px, 2vw, 22px);
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

    .btn {
      position: relative;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid var(--line);
      cursor: pointer;
      padding: 14px 20px;
      min-height: 52px;
      border-radius: 999px;
      font-weight: 750;
      color: var(--text);
      background: var(--panel);
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    }

    .btn:hover { transform: translateY(-3px); background: var(--panel-strong); border-color: rgba(255,255,255,0.34); }
    .btn-primary {color: #071018; border-color: transparent; box-shadow: 0 18px 50px rgba(91, 225, 230, 0.24); }
    .btn-primary::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
      transform: translateX(-110%);
      transition: transform 0.7s ease;
      z-index: -1;
    }
    .btn-primary:hover::after { transform: translateX(110%); }
    .btn-outline { background: transparent; }
    .btn-outline:hover { color: #081018; background: var(--text); }
    .magnetic { transition: transform 0.18s ease; }

    .profile-card {
      position: relative;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 38px;
      background: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .profile-card::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      right: -90px;
      top: -90px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(91,225,230,0.28), transparent 70%);
    }

    .avatar {
      position: relative;
      z-index: 1;
      width: 150px;
      height: 150px;
      border-radius: 34px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      background: conic-gradient(from 180deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
      box-shadow: 0 24px 70px rgba(91,225,230,0.22);
      color: #071018;
      font-size: 48px;
      font-weight: 900;
      letter-spacing: -0.08em;
    }

    .profile-card h3,
    .profile-card p,
    .profile-card .facts { position: relative; z-index: 1; }

    .facts {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .fact {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
    }

    .fact strong { white-space: nowrap; }

    section { padding: 82px 0; }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-head p { max-width: 580px; }

    .grid { display: grid; gap: 18px; }
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    .module {
      position: relative;
      min-height: 245px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,0.055);
      overflow: hidden;
      box-shadow: 0 14px 60px rgba(0,0,0,0.22);
      transition: transform 0.35s cubic-bezier(.2,.8,.2,1), border-color 0.35s ease, background 0.35s ease;
    }

    .module:hover { transform: translateY(-8px); border-color: rgba(91, 225, 230, 0.45); background: rgba(255,255,255,0.085); }
    .module p, .module h3, .module h4, .module h5, .module ul { position: relative; z-index: 1; }

    .spotlight { --x: 50%; --y: 50%; }
    .spotlight::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at var(--x) var(--y), rgba(91,225,230,0.24), transparent 34%);
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .spotlight:hover::before { opacity: 1; }

    .border-run::after {
      content: "";
      position: absolute;
      left: 24px;
      bottom: 18px;
      width: 70px;
      height: 4px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 24px rgba(91, 225, 230, 0.35);
      transition: width 0.35s ease;
    }
    .border-run:hover::after { width: calc(100% - 48px); }

    .content-block {
      padding: clamp(26px, 5vw, 54px);
      border-radius: 38px;
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
      box-shadow: var(--shadow);
    }
    .content-block p + p { margin-top: 16px; }

    .timeline {
      position: relative;
      display: grid;
      gap: 18px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 20px;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background: var(--line);
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 70px 1fr;
      gap: 20px;
      align-items: start;
    }

    .timeline-year {
      position: relative;
      z-index: 1;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--accent);
      color: #071018;
      font-weight: 900;
      font-size: 12px;
      box-shadow: 0 0 30px rgba(91,225,230,0.34);
    }

    .timeline-content {
      padding: 22px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.055);
    }

    .stack-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 14px;
    }

    .stack-item {
      min-height: 132px;
      display: grid;
      place-items: center;
      text-align: center;
      gap: 8px;
      padding: 18px 12px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255,255,255,0.055);
      transition: 0.25s ease;
    }

    .stack-item:hover {
      transform: translateY(-6px);
      border-color: rgba(91,225,230,0.45);
      background: rgba(255,255,255,0.09);
    }

    .stack-icon {
      width: 42px;
      height: 42px;
      object-fit: contain;
      filter: drop-shadow(0 12px 22px rgba(0,0,0,0.28));
    }

    .stack-item span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .service-list {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .service-list li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
    }

    .service-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      flex: 0 0 auto;
    }

    .regional {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,0.025);
    }

    .faq { display: grid; gap: 12px; }
    details { border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,0.055); overflow: hidden; }
    summary { cursor: pointer; padding: 20px 22px; font-weight: 750; letter-spacing: -0.02em; list-style: none; }
    summary::-webkit-details-marker { display: none; }
    details p { padding: 0 22px 22px; }
    details[open] { border-color: rgba(91,225,230,0.42); background: rgba(255,255,255,0.08); }

    .cta-box {
      position: relative;
      overflow: hidden;
      padding: clamp(30px, 7vw, 70px);
      border-radius: 44px;
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(91,225,230,0.16), rgba(24,184,192,0.12), rgba(255,255,255,0.05));
      box-shadow: var(--shadow);
    }
    .cta-box::after {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      right: -120px;
      top: -120px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.22;
      filter: blur(10px);
    }
    .cta-box > * { position: relative; z-index: 1; }

    .to-top {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(18px);
      color: var(--text);
      cursor: pointer;
      opacity: 0;
      transform: translateY(16px);
      pointer-events: none;
      transition: 0.25s ease;
      z-index: 60;
    }
    .to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

    .reveal { opacity: 0; transform: translateY(34px); transition: 0.8s cubic-bezier(.2,.8,.2,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    footer { padding: 50px 0 80px; color: var(--muted); text-align: center; }

    @media (max-width: 1000px) {
      .hero-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .stack-grid { grid-template-columns: repeat(3, 1fr); }
      .section-head { align-items: start; flex-direction: column; }
      .nav-links { display: none; }
    }

    @media (max-width: 620px) {
      .container, .nav { width: min(100% - 24px, 1180px); }
      .hero { padding: 82px 0 64px; }
      .hero-actions, .btn { width: 100%; }
      .stack-grid { grid-template-columns: repeat(2, 1fr); }
      .timeline-item { grid-template-columns: 54px 1fr; gap: 12px; }
      h1 { font-size: clamp(42px, 13vw, 68px); }
    }/* End custom CSS */