*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    /* Removed forced smooth scroll-behavior: the Spline viewer's continuous
       WebGL render loop was fighting with native smooth scrolling and causing
       stutter. Native (auto) scrolling + the pointer-events fix below is what
       actually restores smoothness. */
    scroll-behavior:auto;
}

body{
    font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;
    background:black;
    color:#e7e7e7;
    min-height:100vh;
    line-height:1.5;
    overflow-x:hidden;
}

/* ============================= */
/* Background */
/* ============================= */

#home{
    scroll-margin-top:90px;
}

.image-gradient{
    position:absolute;
    top:0;
    right:0;
    opacity:.5;
    z-index:-1;
    max-width:100%;
    height:auto;
}

.layer-blur{
    position:absolute;
    top:30%;
    right:0;
    width:30rem;
    height:0;
    box-shadow:0 0 700px 15px white;
    z-index:-1;
}

/* ============================= */
/* Layout */
/* ============================= */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 2rem;
}

main{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    min-height:calc(110vh - 90px);
    position:relative;
}

.content{
    width:100%;
    max-width:42rem;
    margin-left:8%;
    margin-bottom: 3%;
    z-index:5;
}

/* ============================= */
/* Spline 3D robot — scroll-jank fix */
/* ============================= */
.robot-3d{
    position:absolute;
    top:-15%;
    right:-15%;
    width:900px;
    height:900px;
    pointer-events:none;
    contain:layout paint size;
    will-change:transform;
    transform:translateZ(0);
    isolation:isolate;
}

.robot-3d spline-viewer{
    width:100%;
    height:100%;
    display:block;
    pointer-events:none;
}

.ab3d-stats{
    display:flex; gap:60px; padding-top:12px; border-top:1px solid rgba(248, 245, 245, 0.1); flex-wrap:wrap;
  }

.ab3d-stats2{
    display:flex; gap:20px; padding-top:32px; border-top:1px solid rgba(0, 0, 0, 0.08); flex-wrap:wrap;
  }

  .ab3d-stat{ position:relative; }
  .ab3d-stat-num{
    font-size:34px; font-weight:800; color:#fff; letter-spacing:-0.02em;
    background:linear-gradient(135deg,#fff,#c4b5fd);
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .ab3d-stat-plus{ font-size:22px; font-weight:800; color:var(--cyan); }
  .ab3d-stat p{ margin:4px 0 0; font-size:13px; color:#8f8ca6; }




  @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .animate-gradient {
    background-size: 200% auto;
    animation: gradient 4s ease infinite;
  }

/* ============================= */
/* Large Desktop */
/* ============================= */

@media (max-width:1440px){

    .robot-3d{
        width:700px;
        height:700px;
        right:-20%;
    }

}

/* ============================= */
/* Laptop */
/* ============================= */

@media (max-width:1200px){

    .content{
        margin-left:5%;
        max-width:36rem;
    }

    .robot-3d{
        width:600px;
        height:600px;
        right:-22%;
        top:0;
    }

}

/* ============================= */
/* Tablet */
/* ============================= */

@media (max-width:992px){

    main{
        min-height:auto;
        padding:5rem 0 3rem;
    }

    .content{
        margin:auto;
        text-align:center;
        max-width:42rem;
    }

    .robot-3d{
        position:relative;
        display:block;
        margin:3rem auto 0;
        width:500px;
        height:500px;
        right:0;
        top:0;
    }

}

/* ============================= */
/* Mobile */
/* ============================= */

@media (max-width:768px){

    .container{
        padding:0 1.2rem;
    }

    main{
        padding-top:3rem;
    }

    .content{
        margin:0 auto;
        text-align:center;
    }

    .robot-3d{
        width:350px;
        height:350px;
        margin-top:2rem;
    }

    .layer-blur{
        width:18rem;
        box-shadow:0 0 350px 10px white;
    }

}

/* ============================= */
/* Small Mobile */
/* ============================= */

@media (max-width:480px){

    .container{
        padding:0 1rem;
    }

    .content{
        max-width:100%;
    }

    .robot-3d{
        width:270px;
        height:270px;
        margin-top:1.5rem;
    }

    .layer-blur{
        width:12rem;
        box-shadow:0 0 220px 8px white;
    }

}


  #service-carousel.sc3d-section{
    --bg-deep:#0a0a14;
    --bg-panel:#12121f;
    --violet:#7c3aed;
    --violet-2:#a855f7;
    --blue:#3b82f6;
    --cyan:#22d3ee;
    --mint:#34d399;
    font-family:'Inter',ui-sans-serif,system-ui,-apple-system,sans-serif;
    padding:80px 24px;
    position:relative;
    overflow:hidden;
  }

  .sc3d-wrap{ max-width:1280px; margin:0 auto; }

  /* Header */
  .sc3d-header{ text-align:center; max-width:640px; margin:0 auto 56px; }
  .sc3d-eyebrow{
    display:inline-block;
    font-size:12px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
    color:#c4b5fd;
    background:rgba(124,58,237,.14);
    border:1px solid rgba(124,58,237,.3);
    padding:7px 18px;
    border-radius:999px;
  }
  .sc3d-heading{
    margin:18px 0 0;
    font-size:clamp(28px,4vw,42px);
    font-weight:800;
    letter-spacing:-0.02em;
    color:#f5f4ff;
  }

  /* Stage */
  .sc3d-stage{ position:relative; perspective:1600px; }
  .sc3d-glow-a, .sc3d-glow-b{
    position:absolute; border-radius:50%; filter:blur(90px); z-index:0; pointer-events:none;
  }
  .sc3d-glow-a{ width:420px; height:420px; background:rgba(124,58,237,.35); top:-80px; left:-100px; }
  .sc3d-glow-b{ width:380px; height:380px; background:rgba(59,130,246,.28); bottom:-100px; right:-80px; }

  .sc3d-viewport{ position:relative; overflow:hidden; z-index:1; border-radius:28px; }
  .sc3d-track{ display:flex; transition:transform .65s cubic-bezier(.65,0,.35,1); }
  .sc3d-slide{ flex:0 0 100%; padding:12px; display:flex; justify-content:center; }

  /* 3D Card — full size */
  .sc3d-card{
    width:100%; max-width:1180px;
    transform-style:preserve-3d;
    transition:transform .25s ease-out;
    will-change:transform;
  }

  .sc3d-frame{
    position:relative;
    border-radius:26px;
    padding:3px;
    background:linear-gradient(155deg,
      rgba(255,255,255,.9) 0%,
      rgba(180,170,220,.35) 12%,
      rgba(40,35,60,.9) 30%,
      rgba(10,10,20,1) 55%,
      rgba(70,60,110,.6) 85%,
      rgba(255,255,255,.7) 100%);
    box-shadow:
      0 30px 60px -20px rgba(76,29,149,.55),
      0 10px 30px -10px rgba(0,0,0,.6);
    transform:translateZ(0);
  }
  .sc3d-frame-notch{
    position:absolute; top:14px; left:50%; transform:translateX(-50%);
    width:70px; height:6px; border-radius:999px;
    background:rgba(0,0,0,.5);
    box-shadow:inset 0 1px 2px rgba(0,0,0,.7), 0 1px 0 rgba(255,255,255,.06);
    z-index:3;
  }

  /* Panel — two columns, fills the card */
  .sc3d-panel{
    position:relative;
    border-radius:23px;
    background:
      radial-gradient(circle at 78% 30%, rgba(139,92,246,.35), transparent 55%),
      radial-gradient(circle at 20% 85%, rgba(59,130,246,.22), transparent 55%),
      linear-gradient(180deg, var(--bg-panel), #0b0b16);
    border:1px solid rgba(255,255,255,.06);
    padding:58px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:36px;
    align-items:center;
    min-height:560px;
  }
  .sc3d-panel::before{
    content:"";
    position:absolute; inset:0;
    background:repeating-linear-gradient(115deg, rgba(255,255,255,.025) 0 1px, transparent 1px 3px);
    pointer-events:none;
  }

  /* ---- Column 1: text ---- */
  .sc3d-col-text{ position:relative; z-index:2; }

  .sc3d-icon{
    width:54px; height:54px; border-radius:14px;
    display:flex; align-items:center; justify-content:center;
    color:#e9d5ff;
    background:linear-gradient(145deg, rgba(124,58,237,.5), rgba(59,130,246,.3));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 8px 20px -6px rgba(124,58,237,.6);
    margin-bottom:22px;
  }
  .sc3d-icon svg{ width:26px; height:26px; }

  .sc3d-title{
    font-size:28px; font-weight:800; color:#fff; letter-spacing:-0.01em; margin:0 0 14px;
  }
  .sc3d-desc{
    font-size:15.5px; line-height:1.75; color:#a8a5bd; max-width:420px; margin:0 0 24px;
  }
  .sc3d-list{ list-style:none; padding:0; margin:0 0 32px; display:flex; flex-direction:column; gap:11px; }
  .sc3d-list li{
    font-size:14px; color:#cdc9de; display:flex; align-items:center; gap:10px;
  }
  .sc3d-list li::before{
    content:""; width:6px; height:6px; border-radius:50%;
    background:linear-gradient(135deg, var(--violet-2), var(--blue));
    flex-shrink:0;
  }

  .sc3d-cta{
    display:inline-flex; align-items:center; gap:8px;
    background:linear-gradient(135deg, var(--violet), var(--blue));
    color:#fff; font-size:14px; font-weight:600;
    padding:13px 24px; border-radius:12px; border:none; cursor:pointer;
    box-shadow:0 10px 26px -8px rgba(124,58,237,.65);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .sc3d-cta svg{ width:16px; height:16px; }
  .sc3d-cta:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -8px rgba(124,58,237,.8); }

  /* ---- Column 2: animated isometric visual ---- */
  .sc3d-col-viz{ position:relative; z-index:2;  min-height:520px; }
  .viz-scene{
    position:relative;
    width:100%; height:100%;
    min-height:420px;
    transform:rotateX(8deg) rotateY(-14deg);
    transform-style:preserve-3d;
  }

  .viz-lines{ position:absolute; inset:0; width:100%; height:100%; overflow:visible; }
  .viz-lines .line{
    fill:none;
    stroke:rgba(139,164,255,.55);
    stroke-width:1.4;
    stroke-dasharray:6 6;
    animation:dashFlow 3.5s linear infinite;
    filter:drop-shadow(0 0 4px rgba(139,164,255,.5));
  }
  @keyframes dashFlow{ to{ stroke-dashoffset:-120; } }

  /* floating keyframes */
  @keyframes floatY{ 0%,100%{ transform:translateY(0px) rotate(0deg);} 50%{ transform:translateY(-14px) rotate(0.6deg);} }
  @keyframes floatYrev{ 0%,100%{ transform:translateY(0px) rotate(0deg);} 50%{ transform:translateY(12px) rotate(-0.6deg);} }
  @keyframes floatYslow{ 0%,100%{ transform:translateY(0px);} 50%{ transform:translateY(-9px);} }
  .viz-float{ animation:floatY 5.2s ease-in-out infinite; }
  .viz-float-rev{ animation:floatYrev 6s ease-in-out infinite; }
  .viz-float-slow{ animation:floatYslow 7.2s ease-in-out infinite; }

  /* small code / dashboard windows */
  .viz-screen{
    position:absolute; padding:12px; z-index:2;
    background:linear-gradient(160deg, rgba(30,32,55,.85), rgba(10,10,20,.9));
    border:1px solid rgba(150,170,255,.35);
    border-radius:12px;
    box-shadow:0 0 24px rgba(99,102,241,.25), inset 0 0 20px rgba(99,102,241,.06);
  }
  .viz-screen-bar{ display:flex; gap:5px; margin-bottom:10px; }
  .viz-screen-bar span{ width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.25); }
  .viz-screen-bar span:nth-child(1){ background:#f87171; }
  .viz-screen-bar span:nth-child(2){ background:#fbbf24; }
  .viz-screen-bar span:nth-child(3){ background:#34d399; }

  .viz-code-line{
    height:6px; border-radius:3px; margin-bottom:7px;
    background:linear-gradient(90deg, var(--cyan), var(--violet-2));
    opacity:.75;
  }
  .viz-code-line.short{ background:linear-gradient(90deg, var(--mint), var(--blue)); }

  .viz-dash-row{ display:flex; align-items:center; gap:7px; margin-bottom:8px; }
  .viz-dash-row .dot{ width:6px; height:6px; border-radius:50%; background:var(--mint); box-shadow:0 0 6px var(--mint); flex-shrink:0; }

  /* central phone mockup */
  .viz-phone{
    position:relative; z-index:3;
    width:150px; height:280px; margin:0 auto;
    border-radius:26px; padding:14px 12px;
    background:linear-gradient(160deg, rgba(35,38,64,.92), rgba(8,8,16,.95));
    border:1px solid rgba(150,170,255,.4);
    box-shadow:0 0 36px rgba(124,58,237,.35), inset 0 0 22px rgba(99,102,241,.08);
  }
  .viz-phone-notch{ width:34px; height:5px; border-radius:4px; background:rgba(255,255,255,.15); margin:0 auto 12px; }
  .viz-phone-header{ height:8px; width:60%; border-radius:4px; background:linear-gradient(90deg,var(--cyan),var(--violet-2)); margin-bottom:14px; opacity:.85; }
  .viz-phone-chart{ height:52px; margin-bottom:12px; }
  .viz-phone-chart svg, .viz-browser-chart svg{ width:100%; height:100%; }
  .chart-line{ stroke:var(--mint); stroke-width:2; filter:drop-shadow(0 0 4px var(--mint)); }
  .viz-phone-row{ display:flex; gap:8px; margin-bottom:12px; }
  .viz-phone-chip{ flex:1; height:26px; border-radius:8px; background:rgba(139,92,246,.18); border:1px solid rgba(150,170,255,.3); }
  .viz-phone-bars{ display:flex; align-items:flex-end; gap:6px; height:44px; }
  .viz-phone-bars span{ flex:1; border-radius:3px 3px 0 0; background:linear-gradient(180deg, var(--blue), var(--violet-2)); box-shadow:0 0 8px rgba(99,102,241,.5); }

  /* central browser window */
  .viz-browser{
    position:relative; z-index:3;
    width:230px; margin:0 auto;
    border-radius:14px; padding:14px;
    background:linear-gradient(160deg, rgba(35,38,64,.92), rgba(8,8,16,.95));
    border:1px solid rgba(150,170,255,.4);
    box-shadow:0 0 36px rgba(59,130,246,.35), inset 0 0 22px rgba(99,102,241,.08);
  }
  .viz-browser-bar{ display:flex; align-items:center; gap:5px; margin-bottom:12px; }
  .viz-browser-bar span{ width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.25); }
  .viz-browser-bar span:nth-child(1){ background:#f87171; }
  .viz-browser-bar span:nth-child(2){ background:#fbbf24; }
  .viz-browser-bar span:nth-child(3){ background:#34d399; }
  .viz-browser-url{ flex:1; height:8px; border-radius:4px; background:rgba(255,255,255,.08); margin-left:6px; }
  .viz-browser-chart{ height:56px; margin-bottom:12px; }
  .viz-browser-grid{ display:flex; gap:10px; align-items:flex-end; }
  .viz-browser-donut{
    width:46px; height:46px; border-radius:50%;
    background:conic-gradient(var(--violet-2) 0 40%, var(--cyan) 40% 70%, var(--mint) 70% 100%);
    box-shadow:0 0 14px rgba(139,92,246,.5);
  }
  .viz-browser-bars-mini{ flex:1; display:flex; gap:5px; align-items:flex-end; height:46px; }
  .viz-browser-bars-mini span{ flex:1; border-radius:2px 2px 0 0; background:linear-gradient(180deg, var(--blue), var(--violet-2)); }

  /* cloud */
  .viz-cloud{
    position:absolute; width:74px; z-index:1; color:#93c5fd;
    filter:drop-shadow(0 0 10px rgba(96,165,250,.6));
  }
  .viz-cloud--big{ width:110px; }
  .viz-cloud svg{ width:100%; height:auto; }

  /* floating chip icon */
  .viz-chip{
    position:absolute; width:38px; height:38px; z-index:1;
    display:flex; align-items:center; justify-content:center;
    color:#c4b5fd;
    background:linear-gradient(160deg, rgba(35,38,64,.85), rgba(8,8,16,.9));
    border:1px solid rgba(150,170,255,.35);
    border-radius:10px;
    box-shadow:0 0 16px rgba(124,58,237,.4);
  }
  .viz-chip svg{ width:18px; height:18px; }

  /* database cylinders */
  .viz-db{ position:absolute; width:70px; z-index:2; }
  .viz-db-ring{
    width:70px; height:22px; border-radius:50%;
    border:2px solid var(--mint);
    box-shadow:0 0 14px var(--mint);
    background:rgba(52,211,153,.06);
  }
  .viz-db-body{
    width:70px; height:46px; margin-top:-11px;
    border-radius:0 0 35px 35px;
    background:linear-gradient(180deg, rgba(52,211,153,.18), rgba(59,130,246,.14));
    border:1px solid rgba(150,170,255,.35);
    border-top:none;
    box-shadow:inset 0 -8px 16px rgba(52,211,153,.15);
  }

  /* Arrows */
  .sc3d-arrow{
    position:absolute; top:50%; transform:translateY(-50%);
    width:46px; height:46px; border-radius:50%;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.14);
    color:#e9e7f5;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer; z-index:5;
    backdrop-filter:blur(6px);
    transition:background .2s ease, transform .2s ease;
  }
  .sc3d-arrow svg{ width:20px; height:20px; }
  .sc3d-arrow:hover{ background:rgba(124,58,237,.35); transform:translateY(-50%) scale(1.06); }
  .sc3d-arrow-left{ left:-6px; }
  .sc3d-arrow-right{ right:-6px; }
  @media (min-width:900px){
    .sc3d-arrow-left{ left:-56px; }
    .sc3d-arrow-right{ right:-56px; }
  }

  /* Dots */
  .sc3d-dots{ display:flex; justify-content:center; gap:10px; margin-top:36px; }
  .sc3d-dot{
    width:9px; height:9px; border-radius:999px; border:none; cursor:pointer;
    background:rgba(255,255,255,.18);
    transition:all .3s ease;
  }
  .sc3d-dot.is-active{ width:26px; background:linear-gradient(135deg, var(--violet-2), var(--blue)); }

  /* Responsive */
  @media (max-width:900px){
    .sc3d-panel{ grid-template-columns:1fr; padding:36px 26px; min-height:auto; }
    .sc3d-col-viz{ order:-1; min-height:320px; }
    .sc3d-title{ font-size:24px; }
    .sc3d-desc, .sc3d-list{ max-width:100%; }
  }

 .solution {
  width: 120%;
  height: 150%;
  margin-top: 0;
  margin-left: -15%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


   #about.ab-section{
    --bg-deep:#0a0a14;
    --violet:#7c3aed;
    --violet-2:#a855f7;
    --blue:#3b82f6;
    font-family:'Inter',ui-sans-serif,system-ui,-apple-system,sans-serif;

    padding:100px 24px;
    position:relative;
  }

  .ab-wrap{ max-width:1100px; margin:0 auto; }

  /* Centered intro */
  .ab-intro{ text-align:center; max-width:680px; margin:0 auto 72px; }
  .ab-eyebrow{
    display:inline-block;
    font-size:12px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
    color:#c4b5fd;
    background:rgba(124,58,237,.14);
    border:1px solid rgba(124,58,237,.3);
    padding:7px 18px;
    border-radius:999px;
  }
  .ab-heading{
    margin:18px 0 20px;
    font-size:clamp(28px,4vw,40px);
    font-weight:800;
    letter-spacing:-0.02em;
    color:#f5f4ff;
    line-height:1.2;
  }
  .ab-paragraph{
    font-size:16px; line-height:1.8; color:#a8a5bd;
    max-width:640px; margin:0 auto;
  }

  /* ---- Why Choose Us ---- */
  .ab-why{ margin-bottom:80px; }
  .ab-why-header{ text-align:center; max-width:600px; margin:0 auto 44px; }
  .ab-why-heading{
    margin:16px 0 0;
    font-size:clamp(22px,3vw,30px);
    font-weight:800;
    color:#f5f4ff;
    letter-spacing:-0.01em;
  }



  .ab-bubble-field{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:34px;
    padding-top:10px;
    perspective:1400px;
  }

  .ab-bubble{
    position:relative;
    aspect-ratio:1 / 1;
    border-radius:50%;
    transform-style:preserve-3d;
    --tiltX:0deg;
    --tiltY:0deg;
    transform:rotateX(var(--tiltX)) rotateY(var(--tiltY));
    transition:transform .35s cubic-bezier(.22,1,.36,1);
    cursor:pointer;
  }

  /* Resting bob animation — each bubble on its own timing/offset so the
     four don't move in sync, like bubbles drifting in water */
  .ab-bubble--float1{ animation:abBubbleFloat 6.4s ease-in-out infinite; }
  .ab-bubble--float2{ animation:abBubbleFloat 7.6s ease-in-out infinite; animation-delay:-1.2s; }
  .ab-bubble--float3{ animation:abBubbleFloat 6.9s ease-in-out infinite; animation-delay:-3.4s; }
  .ab-bubble--float4{ animation:abBubbleFloat 8.2s ease-in-out infinite; animation-delay:-2.1s; }

  @keyframes abBubbleFloat{
    0%,100%{ transform:translateY(0px) rotateX(var(--tiltX)) rotateY(var(--tiltY)); }
    50%{ transform:translateY(-16px) rotateX(var(--tiltX)) rotateY(var(--tiltY)); }
  }

  .ab-bubble.is-tilting{ animation-play-state:paused; }

  .ab-bubble-inner{
    position:relative;
    width:100%; height:100%;
    border-radius:50%;
    padding:34px 26px;
    display:flex; flex-direction:column; align-items:center; text-align:center;
    justify-content:center;
    overflow:hidden;

    /* Glass sphere body: soft violet/blue glass tint with depth via
       layered radial gradients + rim light + inner shadow curvature */
    background:
      radial-gradient(circle at 70% 78%, rgba(124,58,237,.35), rgba(10,10,20,0) 55%),
      radial-gradient(circle at 50% 50%, rgba(139,92,246,.18), rgba(10,10,20,.35) 72%),
      linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));

    border:1px solid rgba(255,255,255,.35);
    box-shadow:
      inset 0 -22px 36px -12px rgba(124,58,237,.45),
      inset 0 18px 30px -10px rgba(255,255,255,.35),
      inset 6px 6px 18px rgba(255,255,255,.12),
      0 24px 46px -18px rgba(76,29,149,.65),
      0 6px 18px -6px rgba(0,0,0,.5);

    backdrop-filter:blur(3px);
    transition:box-shadow .3s ease, border-color .3s ease;
  }

  .ab-bubble:hover .ab-bubble-inner{
    border-color:rgba(196,181,253,.6);
    box-shadow:
      inset 0 -22px 36px -12px rgba(124,58,237,.6),
      inset 0 18px 30px -10px rgba(255,255,255,.45),
      inset 6px 6px 18px rgba(255,255,255,.18),
      0 30px 56px -16px rgba(124,58,237,.75),
      0 8px 20px -6px rgba(0,0,0,.55);
  }

 

  

  .ab-bubble-icon{
    position:relative; z-index:2;
    width:50px; height:50px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:#f5f0ff;
    background:linear-gradient(145deg, rgba(124,58,237,.65), rgba(59,130,246,.4));
    border:1px solid rgba(255,255,255,.4);
    box-shadow:0 8px 18px -6px rgba(124,58,237,.7), inset 0 2px 4px rgba(255,255,255,.4);
    margin-bottom:14px;
  }
  .ab-bubble-icon svg{ width:23px; height:23px; }

  .ab-bubble-inner h4{
    position:relative; z-index:2;
    margin:0 0 8px;
    font-size:15px; font-weight:800; color:#fff; letter-spacing:-0.01em;
    line-height:1.3;
  }
  .ab-bubble-inner p{
    position:relative; z-index:2;
    margin:0;
    font-size:12px; line-height:1.55; color:#e6e2f7;
    max-width:170px;
  }

  /* Responsive: 2x2 on tablets, single column stack on phones, bubbles
     shrink but keep the perfectly round glass-ball shape */
  @media (max-width:900px){
    .ab-bubble-field{ grid-template-columns:repeat(2, 1fr); gap:26px; max-width:520px; margin:0 auto; }
    .ab-bubble-inner{ padding:28px 20px; }
  }
  @media (max-width:520px){
    .ab-bubble-field{ grid-template-columns:1fr; max-width:280px; }
    .ab-bubble-inner p{ max-width:210px; }
  }

  /* ---- Trusted customers rectangle ---- */
  .ab-trust-box{
    position:relative;
    border-radius:22px;
    padding:40px 0 36px;
    background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 50px -25px rgba(76,29,149,.5), inset 0 1px 0 rgba(255,255,255,.04);
    overflow:hidden;
  }

  .ab-trust-header{
    display:flex; align-items:center; justify-content:center; gap:10px;
    margin-bottom:34px;
    padding:0 24px;
  }
  .ab-trust-dot{
    width:7px; height:7px; border-radius:50%;
    background:linear-gradient(135deg, var(--violet-2), var(--blue));
    box-shadow:0 0 10px rgba(139,92,246,.8);
  }
  .ab-trust-header h3{
    margin:0;
    font-size:13px; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
    color:#cdc9de;
  }

  /* Marquee */
  .ab-marquee{ position:relative; width:100%; overflow:hidden; }
  .ab-marquee-fade{
    position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none;
  }
  .ab-marquee-fade--left{ left:0; background:linear-gradient(90deg, var(--bg-deep), transparent); }
  .ab-marquee-fade--right{ right:0; background:linear-gradient(270deg, var(--bg-deep), transparent); }

  .ab-marquee-track{
    display:flex; align-items:center; gap:18px;
    width:max-content;
    animation:abScroll 28s linear infinite;
  }
  .ab-marquee:hover .ab-marquee-track{ animation-play-state:paused; }

  @keyframes abScroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
  }

  /* Logo chip — rectangle badge with icon + name */
  .ab-logo{
    flex:0 0 auto;
    display:flex; align-items:center; gap:10px;
    padding:14px 24px;
    border-radius:14px;
    background:linear-gradient(160deg, rgba(30,32,55,.7), rgba(10,10,20,.7));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 6px 18px -8px rgba(0,0,0,.5);
    transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  }
  .ab-logo:hover{
    border-color:rgba(168,85,247,.5);
    transform:translateY(-3px);
    box-shadow:0 10px 24px -10px rgba(124,58,237,.5);
  }
  .ab-logo svg{
    width:22px; height:22px; flex-shrink:0;
    fill:none; stroke-width:1.6;
    stroke:#a78bfa;
    color:#a78bfa;
  }
  .ab-logo span{
    font-size:15px; font-weight:600; color:#e7e5f5; white-space:nowrap;
  }

  /* Responsive */
  @media (max-width:640px){
    .ab-paragraph{ font-size:15px; }
    .ab-logo{ padding:12px 18px; }
    .ab-logo span{ font-size:14px; }
  }



   :root{
    --violet:#7c3aed;
    --violet-2:#a855f7;
    --blue:#3b82f6;
    --bg-deep:#0a0a14;
    --bg-panel:#12121f;
  }

  /* ===================== CONTACT ===================== */
  #contact.ct-section{
    font-family:'Inter',ui-sans-serif,system-ui,-apple-system,sans-serif;
    background:var(--bg-deep);
    padding:100px 24px;
    position:relative;
    overflow:hidden;
  }
  .ct-glow-a, .ct-glow-b{ position:absolute; border-radius:50%; filter:blur(100px); pointer-events:none; z-index:0; }
  .ct-glow-a{ width:420px; height:420px; background:rgba(124,58,237,.28); top:-100px; left:-100px; }
  .ct-glow-b{ width:380px; height:380px; background:rgba(59,130,246,.22); bottom:-120px; right:-90px; }

  .ct-wrap{ max-width:1180px; margin:0 auto; position:relative; z-index:1; }

  .ct-intro{ text-align:center; max-width:640px; margin:0 auto 64px; }
  .ct-eyebrow{
    display:inline-block;
    font-size:12px; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
    color:#c4b5fd;
    background:rgba(124,58,237,.14);
    border:1px solid rgba(124,58,237,.3);
    padding:7px 18px;
    border-radius:999px;
  }
  .ct-heading{
    margin:18px 0 16px;
    font-size:clamp(28px,4vw,40px);
    font-weight:800;
    letter-spacing:-0.02em;
    color:#f5f4ff;
    line-height:1.2;
  }
  .ct-paragraph{ font-size:15.5px; line-height:1.8; color:#a8a5bd; }

  .ct-grid{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:32px;
    align-items:stretch;
  }

  /* Info card */
  .ct-info-card{
    height:100%;
    padding:38px 32px;
    border-radius:22px;
    background:linear-gradient(160deg, rgba(30,32,55,.65), rgba(10,10,20,.75));
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 50px -25px rgba(76,29,149,.5);
    display:flex; flex-direction:column;
  }
  .ct-info-row{
    display:flex; align-items:flex-start; gap:16px;
    padding-bottom:24px; margin-bottom:24px;
    border-bottom:1px solid rgba(255,255,255,.06);
  }
  .ct-info-row:last-of-type{ border-bottom:none; margin-bottom:8px; padding-bottom:0; }
  .ct-info-icon{
    width:44px; height:44px; flex-shrink:0; border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    color:#e9d5ff;
    background:linear-gradient(145deg, rgba(124,58,237,.5), rgba(59,130,246,.3));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 8px 18px -6px rgba(124,58,237,.55);
  }
  .ct-info-icon svg{ width:20px; height:20px; }
  .ct-info-label{ font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#8b87a3; }
  .ct-info-value{ margin:5px 0 0; font-size:15px; font-weight:600; color:#f2f0fb; }

  /* Email row: value + copy button, and the small "copied" note beneath it */
  .ct-info-email-block{ flex:1; min-width:0; }
  .ct-email-row{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
  .ct-email-row .ct-info-value{ margin:5px 0 0; word-break:break-all; }
  .ct-copy-btn{
    width:30px; height:30px; flex-shrink:0; margin-top:3px; border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    color:#c4b5fd;
    background:rgba(124,58,237,.14);
    border:1px solid rgba(124,58,237,.3);
    cursor:pointer;
    transition:all .2s ease;
  }
  .ct-copy-btn svg{ width:14px; height:14px; }
  .ct-copy-btn:hover{
    background:linear-gradient(135deg, var(--violet), var(--blue));
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 18px -6px rgba(124,58,237,.6);
  }
  .ct-copy-note{ display:block; margin-top:6px; font-size:12px; color:#86efac; min-height:14px; }

  .ct-social{ display:flex; gap:10px; margin-top:auto; padding-top:18px; }
  .ct-social-btn{
    width:40px; height:40px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    color:#c4b5fd;
    background:rgba(124,58,237,.12);
    border:1px solid rgba(124,58,237,.3);
    transition:all .25s ease;
  }
  .ct-social-btn svg{ width:17px; height:17px; }
  .ct-social-btn:hover{
    background:linear-gradient(135deg, var(--violet), var(--blue));
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 8px 18px -6px rgba(124,58,237,.6);
  }

  /* Form frame (matches service-card bezel style) */
  .ct-frame{
    height:100%;
    border-radius:26px;
    padding:3px;
    background:linear-gradient(155deg,
      rgba(255,255,255,.9) 0%,
      rgba(180,170,220,.35) 12%,
      rgba(40,35,60,.9) 30%,
      rgba(10,10,20,1) 55%,
      rgba(70,60,110,.6) 85%,
      rgba(255,255,255,.7) 100%);
    box-shadow:0 30px 60px -20px rgba(76,29,149,.5), 0 10px 30px -10px rgba(0,0,0,.6);
    position:relative;
  }
  .ct-frame-notch{
    position:absolute; top:14px; left:50%; transform:translateX(-50%);
    width:70px; height:6px; border-radius:999px;
    background:rgba(0,0,0,.5);
    box-shadow:inset 0 1px 2px rgba(0,0,0,.7);
    z-index:3;
  }
  .ct-panel{
    height:100%;
    border-radius:23px;
    background:
      radial-gradient(circle at 80% 20%, rgba(139,92,246,.3), transparent 55%),
      radial-gradient(circle at 15% 90%, rgba(59,130,246,.2), transparent 55%),
      linear-gradient(180deg, var(--bg-panel), #0b0b16);
    border:1px solid rgba(255,255,255,.06);
    padding:44px 38px 36px;
  }

  /* Map panel styles retained for reference/reuse elsewhere; no longer used
     in the contact section now that it holds the email form. */
  .ct-map-panel{
    padding:0;
    overflow:hidden;
  }
  .ct-map-frame{
    width:100%;
    height:100%;
    min-height:460px;
    border:0;
    display:block;
    border-radius:23px;
  }

  .ct-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
  .ct-field{ margin-bottom:20px; display:flex; flex-direction:column; gap:8px; }
  .ct-field label{ font-size:13px; font-weight:600; color:#cdc9de; }
  .ct-field input, .ct-field textarea{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.1);
    border-radius:10px;
    padding:12px 14px;
    font-size:14px;
    color:#f2f0fb;
    font-family:inherit;
    outline:none;
    resize:none;
    transition:border-color .2s ease, box-shadow .2s ease;
  }
  .ct-field input::placeholder, .ct-field textarea::placeholder{ color:#6b6884; }
  .ct-field input:focus, .ct-field textarea:focus{
    border-color:rgba(168,85,247,.6);
    box-shadow:0 0 0 3px rgba(124,58,237,.18);
  }

  .ct-submit{
    display:inline-flex; align-items:center; gap:8px; justify-content:center;
    width:100%;
    background:linear-gradient(135deg, var(--violet), var(--blue));
    color:#fff; font-size:14.5px; font-weight:700;
    padding:14px 24px; border-radius:12px; border:none; cursor:pointer;
    box-shadow:0 10px 26px -8px rgba(124,58,237,.65);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .ct-submit svg{ width:16px; height:16px; }
  .ct-submit:hover{ transform:translateY(-2px); box-shadow:0 14px 30px -8px rgba(124,58,237,.8); }
  .ct-form-note{ margin:14px 0 0; font-size:13px; color:#86efac; text-align:center; min-height:16px; }

  @media (max-width:900px){
    .ct-grid{ grid-template-columns:1fr; }
    .ct-form-row{ grid-template-columns:1fr; }
    .ct-map-frame{ min-height:320px; }
  }

  /* ===================== FOOTER ===================== */
  #site-footer.ft-footer{
    font-family:'Inter',ui-sans-serif,system-ui,-apple-system,sans-serif;
    background:#08080f;
    border-top:1px solid rgba(255,255,255,.06);
    position:relative;
    overflow:hidden;
    padding:72px 24px 28px;
  }
  .ft-glow{
    position:absolute; top:-160px; left:50%; transform:translateX(-50%);
    width:600px; height:300px; border-radius:50%;
    background:radial-gradient(circle, rgba(124,58,237,.18), transparent 70%);
    filter:blur(40px); pointer-events:none;
  }

  .ft-wrap{ max-width:1180px; margin:0 auto; position:relative; z-index:1; }

  .ft-top{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr;
    gap:32px;
  }

  .ft-logo{
    display:flex; align-items:center; gap:10px;
    font-size:21px; font-weight:800; color:#fff; letter-spacing:-0.01em;
    margin-bottom:14px;
  }
  .ft-logo-mark{
    width:12px; height:12px; border-radius:4px;
    background:linear-gradient(135deg, var(--violet-2), var(--blue));
    box-shadow:0 0 12px rgba(139,92,246,.8);
  }
  .ft-tagline{ font-size:14px; line-height:1.7; color:#8b87a3; max-width:280px; margin:0 0 22px; }

  .ft-social{ display:flex; gap:10px; }
  .ft-social-btn{
    width:38px; height:38px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    color:#c4b5fd;
    background:rgba(124,58,237,.1);
    border:1px solid rgba(124,58,237,.25);
    transition:all .25s ease;
  }
  .ft-social-btn svg{ width:16px; height:16px; }
  .ft-social-btn:hover{
    background:linear-gradient(135deg, var(--violet), var(--blue));
    color:#fff; transform:translateY(-3px);
    box-shadow:0 8px 18px -6px rgba(124,58,237,.6);
  }

  .ft-col h4{
    font-size:13px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
    color:#f2f0fb; margin:0 0 20px;
  }
  .ft-col ul{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:13px; }
  .ft-col ul a{
    font-size:14px; color:#a19dbb; text-decoration:none;
    position:relative; transition:color .2s ease;
  }
  .ft-col ul a::after{
    content:""; position:absolute; left:0; bottom:-3px; width:0; height:1px;
    background:linear-gradient(90deg, var(--violet-2), var(--blue));
    transition:width .25s ease;
  }
  .ft-col ul a:hover{ color:#fff; }
  .ft-col ul a:hover::after{ width:100%; }

  .ft-newsletter p{ font-size:13.5px; color:#8b87a3; margin:0 0 16px; line-height:1.6; }
  .ft-news-form{ display:flex; gap:8px; }
  .ft-news-form input{
    flex:1; min-width:0;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.1);
    border-radius:10px;
    padding:11px 12px;
    font-size:13.5px;
    color:#f2f0fb;
    outline:none;
    font-family:inherit;
  }
  .ft-news-form input::placeholder{ color:#6b6884; }
  .ft-news-form input:focus{ border-color:rgba(168,85,247,.6); box-shadow:0 0 0 3px rgba(124,58,237,.18); }
  .ft-news-form button{
    width:42px; flex-shrink:0; border-radius:10px; border:none; cursor:pointer;
    background:linear-gradient(135deg, var(--violet), var(--blue));
    color:#fff; display:flex; align-items:center; justify-content:center;
    transition:transform .2s ease;
  }
  .ft-news-form button svg{ width:16px; height:16px; }
  .ft-news-form button:hover{ transform:translateY(-2px); }
  .ft-news-note{ margin:12px 0 0; font-size:12.5px; color:#86efac; min-height:14px; }

  .ft-divider{
    height:1px; margin:56px 0 24px;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  }

  .ft-bottom{
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    flex-wrap:wrap;
  }
  .ft-bottom p{ margin:0; font-size:12.5px; color:#75718f; line-height:1.6; }
  .ft-bottom-links{ display:flex; gap:22px; }
  .ft-bottom-links a{ font-size:12.5px; color:#75718f; text-decoration:none; transition:color .2s ease; }
  .ft-bottom-links a:hover{ color:#e9e7f5; }

  @media (max-width:960px){
    .ft-top{ grid-template-columns:1fr 1fr; }
    .ft-brand{ grid-column:1 / -1; }
  }
  @media (max-width:560px){
    .ft-top{ grid-template-columns:1fr; }
    .ft-bottom{ flex-direction:column; align-items:flex-start; }
  }

  /* ===================== WHATSAPP FLOATING BUTTON ===================== */
  .wa-float{
    position:fixed;
    bottom:24px;
    right:24px;
    width:58px;
    height:58px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 24px rgba(37,211,102,.5);
    z-index:999;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .wa-float svg{ width:30px; height:30px; }
  .wa-float:hover{
    transform:translateY(-4px) scale(1.06);
    box-shadow:0 12px 30px rgba(37,211,102,.65);
  }

  @media (max-width:480px){
    .wa-float{ width:52px; height:52px; bottom:18px; right:18px; }
    .wa-float svg{ width:26px; height:26px; }
  }