
    :root {
      --bg: #030814;
      --bg-soft: #071225;
      --card: rgba(9, 25, 50, 0.62);
      --line: rgba(80, 150, 255, 0.16);
      --text: #eef6ff;
      --muted: #8ea4c2;
      --blue: #2388ff;
      --cyan: #35c7ff;
      --glow: rgba(35, 136, 255, 0.35);
      --max: 1180px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 15% 15%, rgba(20, 86, 180, .18), transparent 30%),
        radial-gradient(circle at 85% 35%, rgba(0, 178, 255, .08), transparent 28%),
        var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    #particles {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      pointer-events: none;
    }

    .noise {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: .035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

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

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 20;
      border-bottom: 1px solid rgba(100,160,255,.08);
      background: rgba(3, 8, 20, .72);
      backdrop-filter: blur(18px);
    }

    nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      width: 220px;
      height: 42px;
      /* border: 1px dashed rgba(90, 165, 255, .4); */
      /* border-radius: 10px; */
      display: grid;
      place-items: center;
      color: #83bfff;
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      /* background: rgba(15, 48, 92, .22); */
    }

    .logo img {
      max-width: 100%;
      max-height: 100%;
      
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .nav-links a {
      position: relative;
      color: #9fb4d0;
      font-size: .9rem;
      transition: .25s ease;
    }

    .nav-links a:hover { color: #fff; }
    .nav-phone {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #dff2ff !important;
      font-weight: 600;
    }
    .nav-phone svg { width: 16px; height: 16px; fill: currentColor; }
    .nav-links a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -8px;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--cyan), var(--blue));
      transition: right .3s ease;
    }
    .nav-links a:not(.nav-cta):hover::after,
    .nav-links a:not(.nav-cta):focus-visible::after { right: 0; }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 42px;
      padding: 0;
      border: 1px solid rgba(50,150,255,.35);
      border-radius: 9px;
      background: rgba(30,110,220,.12);
      color: #dff2ff;
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      display: block;
      width: 19px;
      height: 2px;
      margin: auto;
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }

    .menu-toggle span { position: relative; }
    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
    }
    .menu-toggle span::before { transform: translateY(-6px); }
    .menu-toggle span::after { transform: translateY(6px); }
    .menu-toggle[aria-expanded="true"] span { background: transparent; }
    .menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

    .nav-cta {
      padding: 10px 18px;
      border: 1px solid rgba(50,150,255,.4);
      border-radius: 9px;
      color: #dff2ff !important;
      background: rgba(30,110,220,.12);
    }

    section { padding: 60px 0; }

    .hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      padding-top: 130px;
      position: relative;
    }

    .hero-content {
      /* max-width: 900px; */
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 7px 13px;
      border: 1px solid rgba(60,155,255,.22);
      border-radius: 100px;
      background: rgba(15, 57, 110, .22);
      color: #75c4ff;
      font-size: .76rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #38bdf8;
      box-shadow: 0 0 15px #38bdf8;
    }

    h1 {
      font-size: clamp(3rem, 7vw, 6.4rem);
      line-height: .98;
      letter-spacing: -.055em;
      margin-bottom: 26px;
      background: linear-gradient(120deg, #fff 20%, #a8d7ff 55%, #398cff);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero p {
      max-width: 690px;
      margin: auto;
      color: var(--muted);
      font-size: 1.1rem;
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 13px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 13px 23px;
      border-radius: 10px;
      border: 1px solid var(--line);
      transition: .25s ease;
      font-weight: 600;
      font-size: .92rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, #1474e8, #21a8ff);
      border: none;
      box-shadow: 0 12px 35px rgba(18, 119, 240, .25);
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 45px rgba(18,119,240,.38); }

    .btn-secondary {
      background: rgba(12, 31, 59, .65);
      color: #c7dbf2;
    }

    .btn-secondary:hover { border-color: rgba(60,160,255,.45); }

    .scroll-note {
      position: absolute;
      bottom: 5px;
      color: #506887;
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
    }

    /* Hero slider: fixed shared stage keeps every slide perfectly aligned */
    .hero-slider {
      position: relative;
      width: 100%;
      /* max-width: 920px; */
      height: 400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      /* overflow: hidden; */
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(34px);
      transition:
        opacity .7s ease,
        transform .75s cubic-bezier(.22, .61, .36, 1),
        visibility .7s ease;
      pointer-events: none;
    }

    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .hero-slide h1 {
      width: 100%;
      max-width: 900px;
      margin: 0 auto 24px;
    }

    .hero-slide p {
      width: 100%;
      max-width: 700px;
      margin: 0 auto;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 9px;
      margin-top: 40px;
    }

    .slider-dot {
      width: 24px;
      height: 4px;
      padding: 0;
      border: 0;
      border-radius: 20px;
      background: rgba(100, 160, 220, .28);
      cursor: pointer;
      transition: width .3s ease, background .3s ease, box-shadow .3s ease;
    }

    .slider-dot:hover {
      background: rgba(100, 190, 255, .65);
    }

    .slider-dot.active {
      width: 42px;
      background: #35aaff;
      box-shadow: 0 0 14px rgba(53, 170, 255, .55);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: end;
      margin-bottom: 38px;
    }

    .section-label {
      color: #48aaff;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .72rem;
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: -.04em;
      line-height: 1.1;
    }

    .section-head p {
      color: var(--muted);
      max-width: 450px;
      font-size: .95rem;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .card {
      background: linear-gradient(145deg, rgba(10,31,61,.7), rgba(4,15,31,.65));
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 28px;
      transition: .3s ease;
      position: relative;
      overflow: hidden;
    }

    .card-image {
      width: calc(100% + 56px);
      /* height: 140px; */
      display: block;
      margin: -28px -28px 24px;
      object-fit: cover;
      opacity: .78;
      filter: saturate(.85) contrast(1.08);
      transition: transform .45s ease, opacity .45s ease;
    }

    .card:hover .card-image { transform: scale(1.05); opacity: .95; }

    .card::before {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      right: -70px;
      top: -70px;
      background: rgba(40,140,255,.12);
      filter: blur(30px);
      border-radius: 50%;
    }

    .card:hover {
      transform: translateY(-5px);
      border-color: rgba(54,153,255,.38);
      box-shadow: 0 18px 50px rgba(0,0,0,.25);
    }

    .icon {
      width: 45px;
      height: 45px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(30,125,230,.12);
      border: 1px solid rgba(50,150,255,.2);
      color: #55b9ff;
      font-size: 1.25rem;
      margin-bottom: 22px;
    }

    .card h3 { margin-bottom: 10px; font-size: 1.1rem; }
    .card p { color: var(--muted); font-size: .88rem; }

    .projects {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      align-items: stretch;
    }

    .project {
      display: flex;
      flex-direction: column;
      padding: 0;
      border-radius: 18px;
      border: 1px solid var(--line);
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(circle at 70% 25%, rgba(43,145,255,.28), transparent 32%),
        linear-gradient(145deg, #0b2448, #040e20);
    }

    .project-image {
      width: 100%;
      height: 180px;
      display: block;
      object-fit: cover;
      opacity: .82;
      filter: saturate(.85) contrast(1.08);
      transition: transform .45s ease, opacity .45s ease;
    }

    .project:hover .project-image { transform: scale(1.04); opacity: 1; }
    .project-content { flex: 1; padding: 24px 28px 28px; }

    .project:nth-child(2) {
      background:
        radial-gradient(circle at 25% 20%, rgba(0,205,255,.2), transparent 35%),
        linear-gradient(145deg, #071e3b, #040d1c);
    }

    .project:nth-child(3) {
      background:
        radial-gradient(circle at 80% 20%, rgba(65,100,255,.24), transparent 35%),
        linear-gradient(145deg, #081b38, #030b19);
    }

    .project small { color: #58b6ff; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; }
    .project h3 { font-size: 1.6rem; margin: 8px 0; }
    .project p { color: #8da8c8; font-size: .85rem; max-width: 570px; }
    .project-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      color: #8ed5ff;
      font-size: .8rem;
      font-weight: 700;
    }
    .project-link span { transition: transform .25s ease; }
    .project-link:hover span { transform: translateX(4px); }

    .testimonial-carousel {
      position: relative;
      /* max-width: 920px; */
      min-height: 310px;
      margin: 0 auto;
      padding: 42px 90px 70px;
      overflow: hidden;
      border: 1px solid rgba(48,145,255,.25);
      border-radius: 22px;
      background:
        radial-gradient(circle at 50% 0%, rgba(28,128,255,.16), transparent 48%),
        rgba(5,18,37,.75);
    }

    .testimonial-slide {
      position: absolute;
      inset: 42px 90px 70px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      opacity: 0;
      visibility: hidden;
      transform: translateX(32px);
      transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
    }

    .testimonial-slide.active {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }

    .testimonial-quote {
     
      color: #dbeeff;
      font-size: clamp(1.05rem, 2vw, 1.35rem);
      line-height: 1.65;
    }

    .testimonial-quote::before {
      content: "\201C";
      display: block;
      height: 34px;
      color: #39b7ff;
      font-size: 3.5rem;
      line-height: .8;
    }

    .testimonial-person {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 24px;
      text-align: left;
    }

    .testimonial-person img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(75,180,255,.55);
    }

    .testimonial-person strong { display: block; color: #edf7ff; font-size: .88rem; }
    .testimonial-person span { color: #7592b4; font-size: .76rem; }

    .testimonial-control {
      position: absolute;
      top: 50%;
      z-index: 2;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(80,150,255,.3);
      border-radius: 50%;
      background: rgba(20,80,150,.2);
      color: #dff2ff;
      font-size: 1.3rem;
      cursor: pointer;
      transform: translateY(-50%);
      transition: background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .testimonial-control:hover,
    .testimonial-control:focus-visible {
      border-color: #42baff;
      background: rgba(30,125,230,.3);
      transform: translateY(-50%) scale(1.05);
    }

    .testimonial-prev { left: 28px; }
    .testimonial-next { right: 28px; }
    .testimonial-dots { position: absolute; bottom: 28px; left: 0; right: 0; }
    .testimonial-dot { width: 26px; }

    @media (max-width: 1024px) {
      .testimonial-carousel {
        min-height: 330px;
        padding-inline: 76px;
      }

      .testimonial-slide { inset-inline: 76px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .testimonial-slide { transition: none; }
      .whatsapp-button,
      .whatsapp-button::before,
      .whatsapp-button svg { animation: none; }
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-block: 1px solid var(--line);
      margin-top: 70px;
    }

    .stat {
      padding: 30px 15px;
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .stat:last-child { border-right: 0; }
    .stat strong { display: block; font-size: 2rem; color: #dff2ff; }
    .stat span { color: #637d9f; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }

    .tech {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tech span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 14px;
      border: 1px solid var(--line);
      background: rgba(9,29,57,.55);
      color: #9eb7d5;
      border-radius: 8px;
      font-size: .8rem;
    }

    .tech-icon {
      width: 25px;
      height: 25px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 25px;
      border: 1px solid rgba(83,183,255,.35);
      border-radius: 7px;
      background: rgba(35,136,255,.16);
      color: #75c9ff;
      font-size: .64rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -.02em;
    }

    .tech span:hover {
      border-color: rgba(83,183,255,.55);
      color: #e9f7ff;
    }

    .tech span:hover .tech-icon {
      background: rgba(35,136,255,.3);
      color: #fff;
    }

    .contact-box {
      border: 1px solid rgba(48,145,255,.25);
      border-radius: 24px;
      padding: 55px;
      text-align: center;
      background:
        radial-gradient(circle at 50% 0%, rgba(28,128,255,.18), transparent 45%),
        rgba(5,18,37,.75);
      box-shadow: inset 0 1px rgba(255,255,255,.03);
    }

    .contact-box p {
      color: var(--muted);
      max-width: 590px;
      margin: 15px auto 27px;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 58px 0 24px;
      color: #536c8d;
      font-size: .78rem;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 35px;
    }

    .footer-brand h3 { color: #e7f4ff; font-size: 1rem; margin-bottom: 12px; }
    .footer-brand p { max-width: 280px; color: var(--muted); line-height: 1.7; }
    .footer-phone { display: inline-block; margin-top: 14px; color: #8ed5ff; font-weight: 700; }
    .footer-phone:hover { color: #fff; }
    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }
    .footer-social {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: #cfeaff;
      background: rgba(30,110,220,.12);
      transition: transform .2s ease, color .2s ease, background .2s ease;
    }
    .footer-social:hover { transform: translateY(-3px); color: #fff; background: rgba(30,125,230,.3); }
    .footer-social svg { width: 17px; height: 17px; fill: currentColor; }
    .footer-social.whatsapp:hover { background: rgba(31,189,104,.3); }
    .footer-column h4 { color: #a9c8e7; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
    .footer-column a { display: block; color: #7189a6; margin-bottom: 9px; overflow-wrap: anywhere; transition: color .2s ease; }
    .footer-column a:hover { color: #fff; }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }

    .floating-actions {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 15;
      display: grid;
      gap: 10px;
    }

    .floating-button {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 50%;
      color: #fff;
      box-shadow: 0 10px 28px rgba(0,0,0,.32);
      transition: transform .2s ease, opacity .2s ease;
    }

    .floating-button:hover { transform: translateY(-3px); }
    .floating-button svg { width: 23px; height: 23px; fill: currentColor; }
    .facebook-button { background: #1877f2; }
    .whatsapp-button {
      position: relative;
      background: #1fbd68;
      animation: whatsapp-pulse 3s ease-in-out infinite;
    }
    .whatsapp-button::before {
      content: "";
      position: absolute;
      inset: -5px;
      border: 2px solid rgba(31,189,104,.55);
      border-radius: 50%;
      animation: whatsapp-ring 3s ease-out infinite;
      pointer-events: none;
    }
    .whatsapp-button svg { animation: whatsapp-bounce 3s ease-in-out infinite; }
    .whatsapp-button:hover,
    .whatsapp-button:hover::before,
    .whatsapp-button:hover svg { animation-play-state: paused; }

    @keyframes whatsapp-pulse {
      0%, 68%, 100% { transform: translateY(0) scale(1); }
      74% { transform: translateY(-3px) scale(1.08); }
      80% { transform: translateY(0) scale(1); }
    }

    @keyframes whatsapp-ring {
      0%, 60% { opacity: .7; transform: scale(.85); }
      85%, 100% { opacity: 0; transform: scale(1.35); }
    }

    @keyframes whatsapp-bounce {
      0%, 68%, 100% { transform: rotate(0); }
      74% { transform: rotate(-12deg); }
      80% { transform: rotate(8deg); }
    }
    .back-to-top { background: #002a56; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

    @media (max-width: 1024px) {
      .container { width: min(calc(100% - 48px), var(--max)); }
      .nav-links { gap: 18px; }
      section { padding: 40px 0; }
      .services { grid-template-columns: repeat(2, 1fr); }
      .projects { grid-template-columns: 1fr 1fr; }
      .card { padding: 24px; }
      .card-image { width: calc(100% + 48px); margin: -24px -24px 24px; }
      .project-content { padding: 22px 24px 24px; }
      .project-image { height: 150px; }
      .contact-box { padding: 42px 32px; }
      .testimonial-carousel {
        min-height: 350px;
        padding: 38px 58px 70px;
      }
      .testimonial-slide { inset: 38px 58px 70px; }
      .testimonial-prev { left: 16px; }
      .testimonial-next { right: 16px; }
    }

    @media (max-width: 800px) {

      .menu-toggle { display: grid; place-items: center; }
      .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        left: 14px;
        right: 14px;
        display: grid;
        gap: 0;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: rgba(3, 10, 25, .96);
        box-shadow: 0 18px 35px rgba(0,0,0,.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
      }
      .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
      .nav-links a { padding: 13px 14px; }
      .nav-cta { text-align: center; margin-top: 4px; }

      .hero-slider { height: 330px; }

      .hero-slide {
        padding-inline: 8px;
      }
      .services, .projects { grid-template-columns: 1fr; }
      .project:nth-child(3) { grid-column: span 1; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(2) { border-right: 0; }
      .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .section-head { display: block; }
      .section-head p { margin-top: 15px; }
      .contact-box { padding: 35px 22px; }
      .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
      .footer-brand { grid-column: span 2; }
    }

    @media (max-width: 480px) {

      .hero-slider { height: 390px; }

      .hero-slide h1 { font-size: clamp(2.45rem, 12vw, 3.2rem); }
      .container { width: min(calc(100% - 28px), var(--max)); }
      section { padding: 40px 0; }
      h1 { font-size: clamp(2.45rem, 12vw, 3.2rem); }
      .hero p { font-size: .95rem; }
      .stats strong { font-size: 1.6rem; }
      .footer-inner { gap: 24px 14px; }
      .footer-bottom { display: block; }
      .footer-bottom span + span { display: block; margin-top: 8px; }
      .floating-actions { right: 14px; bottom: 14px; }
      .testimonial-carousel {
        min-height: 420px;
        padding: 32px 48px 68px;
        border-radius: 18px;
      }
      .testimonial-slide { inset: 32px 48px 68px; }
      .testimonial-quote { font-size: 1rem; line-height: 1.55; }
      .testimonial-quote::before { height: 28px; font-size: 3rem; }
      .testimonial-person { margin-top: 20px; }
      .testimonial-person img { width: 62px; height: 62px; }
      .testimonial-person span { display: block; max-width: 145px; }
      .testimonial-control { width: 34px; height: 34px; font-size: 1.1rem; }
      .testimonial-prev { left: 10px; }
      .testimonial-next { right: 10px; }
      .testimonial-dots { bottom: 24px; }
    }



 .site-preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: grid;
      place-items: center;
      background: #030814;
      transition: opacity .6s ease, visibility .6s ease;
    }

    .site-preloader.is-loaded {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .preloader-content {
      display: grid;
      justify-items: center;
      gap: 22px;
      color: #dff2ff;
    }

    .preloader-mark {
      position: relative;
      width: 78px;
      height: 78px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(53,199,255,.22);
      border-radius: 50%;
      background: rgba(13,47,88,.36);
      box-shadow: 0 0 45px rgba(35,136,255,.18);
    }

    .preloader-mark::before,
    .preloader-mark::after {
      content: "";
      position: absolute;
      border: 2px solid transparent;
      border-top-color: #35c7ff;
      border-right-color: #2388ff;
      border-radius: 50%;
      animation: preloader-spin 1.15s linear infinite;
    }

    .preloader-mark::before { inset: -7px; }
    .preloader-mark::after {
      inset: 8px;
      border-top-color: #9fe5ff;
      border-right-color: transparent;
      animation-direction: reverse;
      animation-duration: .8s;
    }

    .preloader-mark span {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #dff8ff;
      box-shadow: 0 0 18px #35c7ff;
      animation: preloader-breathe 1.4s ease-in-out infinite;
    }

    .preloader-name {
      color: #8ed5ff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
    }

    .preloader-bar {
      width: 145px;
      height: 2px;
      overflow: hidden;
      background: rgba(90,165,255,.18);
    }

    .preloader-bar span {
      display: block;
      width: 45%;
      height: 100%;
      background: linear-gradient(90deg, #2388ff, #35c7ff);
      box-shadow: 0 0 12px #35c7ff;
      animation: preloader-progress 1.25s ease-in-out infinite;
    }

    @keyframes preloader-spin { to { transform: rotate(360deg); } }
    @keyframes preloader-breathe {
      0%, 100% { transform: scale(.72); opacity: .6; }
      50% { transform: scale(1.2); opacity: 1; }
    }
    @keyframes preloader-progress {
      0% { transform: translateX(-150%); }
      100% { transform: translateX(330%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .site-preloader { transition: none; }
      .preloader-mark::before,
      .preloader-mark::after,
      .preloader-mark span,
      .preloader-bar span { animation: none; }
    }
 