
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 10%, rgba(98,97,228,0.22) 0%, transparent 70%),
      radial-gradient(ellipse 60% 50% at 20% 60%, rgba(122,60,210,0.18) 0%, transparent 65%),
      radial-gradient(ellipse 55% 45% at 80% 70%, rgba(63,151,255,0.14) 0%, transparent 65%),
      #000000;
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 1.35; pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    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: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 820px;
    opacity: 1; transform: translateY(30px);
    animation: heroIn 1s cubic-bezier(.22,.61,.36,1) 0.2s forwards;
  }
  @keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 18px; border-radius: 50px;
    border: 1px solid rgba(98,97,228,0.4);
    background: rgba(98,97,228,0.1);
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--blue); font-weight: 500; margin-bottom: 28px;
  }
  .hero-eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--blue);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 1.5; transform: scale(0.7); }
  }
  .hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  .hero h1 .line-accent {
    background: linear-gradient(90deg, var(--blue) 0%, var(--indigo) 50%, var(--purple) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    padding: 14px 36px; border-radius: 50px;
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: var(--white); font-size: 0.95rem; font-weight: 500;
    text-decoration: none; border: none; cursor: pointer;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 30px rgba(122,60,210,0.35);
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 1; transition: opacity 0.25s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(122,60,210,0.55); }
  .btn-primary:hover::before { opacity: 1; }
  .btn-outline {
    padding: 14px 36px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white); font-size: 0.95rem; font-weight: 400;
    text-decoration: none; background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px); cursor: pointer;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
  }
  .btn-outline:hover {
    border-color: var(--indigo); background: rgba(98,97,228,0.08);
    transform: translateY(-2px);
  }
  .scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 1.4; animation: heroIn 1s 1.2s forwards; z-index: 2;
  }
  .scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
  .scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--indigo), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
  section {
    padding: 100px 60px;
    position: relative;
  }
  .section-header {
    margin-bottom: 60px;
    opacity: 1; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .section-header.visible { opacity: 1; transform: none; }
  .section-label {
    display: inline-block;
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--blue); font-weight: 600; margin-bottom: 14px;
    position: relative; padding-left: 20px;
  }
  .section-label::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 12px; height: 1px; background: var(--blue);
  }
  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; letter-spacing: -0.025em; line-height: 1.15;
    max-width: 600px;
  }
  .section-title span {
    background: linear-gradient(90deg, var(--blue), var(--indigo));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  /* Gradient divider */
  .divider {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--indigo), var(--blue), transparent);
    opacity: 1.3; margin: 0;
  }
  /* ─── CARDS GRID ─── */
  .cards-grid {
    display: grid;
    gap: 24px;
  }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  /* ─── CARD ─── */
  .card {
    position: relative; border-radius: 20px; overflow: hidden;
    cursor: pointer; height: 380px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(.22,.61,.36,1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    opacity: 1; transform: translateY(30px);
  }
  .card.visible { opacity: 1; transform: translateY(0); }
  .card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(122,60,210,0.0), rgba(63,151,255,0.0));
    transition: opacity 0.4s;
    opacity: 1; z-index: 1;
  }
  /* Glow border via pseudo */
  .card::after {
    content: ''; position: absolute; inset: -1px; border-radius: 21px;
    background: linear-gradient(135deg, var(--purple), var(--indigo), var(--blue));
    z-index: -1; opacity: 1;
    transition: opacity 0.4s;
  }
  .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
      0 20px 60px rgba(122,60,210,0.3),
      0 4px 20px rgba(63,151,255,0.2);
    border-color: transparent;
  }
  .card:hover::after { opacity: 1; }
  .card:hover::before { opacity: 1; }
  /* Card image */
  .card-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
  }
  .card:hover .card-img { transform: scale(1.08); }
  /* Card overlay gradient */
  .card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.6) 45%,
      rgba(0,0,0,0.15) 75%,
      transparent 100%
    );
    z-index: 2;
    transition: background 0.4s;
  }
  .card:hover .card-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.98) 0%,
      rgba(12,5,28,0.75) 45%,
      rgba(12,5,28,0.3) 75%,
      rgba(12,5,28,0.1) 100%
    );
  }
  /* Card icon badge */
  .card-badge {
    position: absolute; top: 22px; right: 22px; z-index: 4;
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; 
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.3s, border-color 0.3s;
  }
  .card:hover .card-badge {
    background: rgba(98,97,228,0.25);
    border-color: rgba(98,97,228,0.6);
  }
  /* Card content */
  .card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 26px 26px;
    z-index: 4;
  }
  .card-tag {
    font-size: 0.67rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--blue); font-weight: 600; margin-bottom: 8px;
    opacity: 1.85;
  }
  .card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em;
    line-height: 1.2; margin-bottom: 10px;
    color: var(--white);
  }
  .card-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.6);
    line-height: 1.6; margin-bottom: 20px;
    max-width: 90%;
    transform: translateY(4px); opacity: 1.8;
    transition: opacity 0.3s, transform 0.3s;
  }
  .card:hover .card-desc { opacity: 1; transform: none; }
  .card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px; border-radius: 50px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--white); font-size: 0.8rem; font-weight: 500;
    text-decoration: none; backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, gap 0.3s;
    cursor: pointer;
  }
  .card:hover .card-cta {
    background: linear-gradient(135deg, rgba(122,60,210,0.45), rgba(98,97,228,0.35));
    border-color: rgba(122,60,210,0.6);
    gap: 12px;
  }
  a.card-cta:hover{
      color: #bbb7b7;
  }
  .card-cta-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s;
  }
  .card:hover .card-cta-arrow { transform: translateX(3px); }
  /* ─── INDUSTRY CARDS (shorter) ─── */
  .industry-grid .card { height: 300px; }
  /* ─── RESPONSIVE ─── */
  @media (max-width: 1200px) {
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 900px) {
    nav { padding: 18px 28px; }
    .nav-links { display: none; }
    section { padding: 70px 28px; }
    .stats-bar { margin: 0 28px 70px; grid-template-columns: repeat(2, 1fr); }
    .tech-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-cta { padding: 70px 28px; }
  }
  @media (max-width: 600px) {
    section { padding: 56px 20px; }
    .tech-grid, .industry-grid { grid-template-columns: 1fr; }
    .stats-bar { margin: 0 20px 56px; grid-template-columns: 1fr 1fr; }
    .hero { padding: 120px 24px 80px; }
    .hero h1 { font-size: 2.6rem; }
    .footer-cta { padding: 56px 20px; }
  }
  /* Tech 5-card layout: last card centered on its own row spanning properly */
  @media (min-width: 901px) {
    .tech-grid {
      grid-template-columns: repeat(6, 1fr);
    }
    .tech-grid .card { grid-column: span 2; }
    .tech-grid .card:nth-child(4) { grid-column: 2 / span 2; }
    .tech-grid .card:nth-child(5) { grid-column: 4 / span 2; }
  }
.hero {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: center;
  padding: 100px 0 60px;
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align:left;
}
.hero .hero-inner {
  max-width: 680px;
  margin-bottom: 60px;
}
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 20px;
}
.hero .hero-badge .hero-badge-dot {
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--purple), var(--indigo));;
  border-radius: 50%;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: linear-gradient(135deg, var(--purple), var(--indigo));;
}
.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 14px;
  }
}
.book-a-demo-content{
   background: #0d1d2e;
   margin: 0 !important;
   padding-top: 80px;
   padding-bottom: 80px;
   position: relative;
   top: -1px;
}
.book-a-demo-content .wrap-demo-form{
   max-width: 1140px;
   margin: auto;
   background: #122336;
}
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
}
  *{box-sizing:border-box;margin:0;padding:0}
  .root{
    font-family:'Inter',-apple-system,sans-serif;background:#09131F;color:#fff;
    padding-top:200px;
    padding-bottom:100px;
  }
  .container{max-width:1080px;margin:0 auto;padding:0 2rem}
  .tech-use .header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3.5rem}
  .eyebrow{font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:#3F97FF;margin-bottom:.5rem}
  .section-title{font-size:2.2rem;font-weight:600;line-height:1.2;color:#fff}
  .section-title span{color:#3F97FF}
  .tabs{display:flex;gap:2px;background:rgba(255,255,255,0.05);border:1px solid rgba(63,151,255,0.12);border-radius:8px;padding:3px}
  .tab{padding:7px 18px;border-radius:6px;font-size:12px;font-weight:500;cursor:pointer;border:none;background:transparent;color:rgba(255,255,255,0.45);transition:all .2s;white-space:nowrap}
  .tab.active{background:#3F97FF;color:#fff}

  .rows{display:flex;flex-direction:column;gap:1px;overflow:hidden}
  .tech-use .row{
    display:grid;
    grid-template-columns: 200px 1fr;
    align-items:stretch;
    transition:background .2s;
    cursor:pointer;position:relative;
    margin-bottom: 45px;
  
  }
    .tech-use .row:not(:last-child){
          border-bottom: 1px solid #033878;
    }
  .row-side{
      padding: 2rem 2rem 2rem 2.25rem;
      display: flex;
      flex-direction: column;
      justify-content: left;
  }
  .row-num{
      font-size: 18px;
      font-weight: 700;
      letter-spacing: .1em;
      color: #beb8b8;
      margin-bottom: .75rem;
      font-variant-numeric: tabular-nums;
  }
  .row-tag{
    font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#3F97FF;background:rgba(63,151,255,0.1);border:1px solid rgba(63,151,255,0.18);padding:3px 10px;border-radius:20px;width:fit-content;margin-bottom:.8rem;
  display:none;
  }
  .row-title{
        font-size: 22px;
      font-weight: 600;
      color: #fff;
      margin-bottom: .5rem;
      line-height: 1.25;
  }
  .row-cta{display:inline-flex;align-items:center;gap:5px;font-size:.75rem;font-weight:600;color:rgba(63,151,255,0.7);margin-top:.9rem;text-decoration:none;transition:color .2s}
  .row:hover .row-cta{color:#3F97FF}
  .row-cta-arrow{display:inline-block;transition:transform .2s}
  .row:hover .row-cta-arrow{transform:translateX(4px)}
  .row-main{
      width: 100%;
      height: auto;
      border-radius: 8px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
      opacity: .85;
      transition: opacity .2s;
      margin-bottom: 0;
      padding: 15px 30px 30px 15px;
  }
  .row-img{
        width: 100%;
      height: 300px;
      border-radius: 8px;
      background-size: cover;
      background-position: center;
      flex-shrink: 0;
      opacity: .85;
      transition: opacity .2s;
      margin-bottom: 30px;
  }
  .row:hover .row-img{opacity:1}
  .row-desc{
    font-size: 16px;
      color: #fff;
      line-height: 1.65;
  }
  .row-arrow{position:absolute;right:1.75rem;top:50%;transform:translateY(-50%);font-size:1rem;color:rgba(255,255,255,0.15);transition:color .2s,transform .2s}
  .row:hover .row-arrow{color:rgba(63,151,255,0.6);transform:translateY(-50%) translateX(3px)}
  .hidden{display:none}
  .row-main .btn-p{
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
}  
.row-main .btn-p:hover{
   color: #fff;
  }
  @media(max-width:768px){
   
    .row-title{
        font-size: 20px;
    }
    .row-desc{
        font-size: 14px;
        color: #fff;
        line-height: 26px;
    }
    .root{
      background:#09131F;color:#fff;
      padding-top:30px;
      padding-bottom:100px;
    }
    .tech-use .row{
      display: block;
      margin-bottom: 60px;
    }
    .row-main{
      padding: 0px;
      margin-bottom: 45px;
    }
    .row-side{
        padding: 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
    }
    .row-cta{
      display:none;
    }
    .tech-use .row{
        display: block;
        padding: 0;
        margin: 0;
    }
    .tech-use .header{
        margin-bottom: 0;
    }
    .section-title{
        margin-top: 8px;
        font-size: 24px;
    }
    #tech{
        margin-top: 30px;
    }
    .tech-use .row:not(:last-child){
        border-bottom: none;
    }
    .container{
        padding:0 15px;
    }
    .root{

    }
  }