        :root {
            --pri: #1B17FF !important;
            --pri2: #131B2E !important;
            --pri3: #1A2540 !important;
            --acc: #000 !important;
            --acc2: #fff !important;
            --accg: rgba(59, 130, 246, .12);
            --sn: #F8FAFC;
            --bd: #E2E8F0;
            --tx: #64748B;
            --dk: #1E293B;
            --wh: #FFFFFF;
            --se: 'DM Serif Display', Georgia, serif;
            --sa: 'Outfit', system-ui, sans-serif;
            --mo: 'JetBrains Mono', monospace
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: var(--sa);
            color: var(--dk);
            background: var(--sn);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden
        }

         /* ===== NAV ===== */
nav {
    background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

nav.scrolled {
  background: rgba(248, 247, 244, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--mist);
  padding: .75rem 0
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -.02em
}

.nav-logo span {
  color: var(--lime);
  font-style: italic
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center
}

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .01em
}

.nav-links a:hover {
  color: var(--forest)
}

.nav-cta {
  background: var(--forest);
  color: var(--snow) !important;
  padding: .55rem 1.25rem;
  border-radius: 100px;
  font-size: .75rem !important;
  font-weight: 600 !important;
  transition: all .3s !important
}

.nav-cta:hover {
  background: var(--ink);
  transform: translateY(-1px)
}

/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 0;
  background: #fff;
  padding: 1rem;
  border-radius: 14px;
  width: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  border: 1px solid transparent;
  transition: 0.3s;
}

.dropdown-menu a i {
  font-size: 14px;
}

.dropdown-menu a:hover {
  border: 1px solid #1B17FF;
  background: #f8f9ff;
}

/* ===== HAMBURGER TOGGLE ===== */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ===== CUSTOM LINK ARROW ===== */
.custom-link {
  position: relative;
  transition: all 0.3s ease;
  padding-right: 25px;
}

.custom-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.custom-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ===== TABLET / MOBILE NAV ===== */
@media (max-width: 991px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 18px;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 20px;
  }

  .nav-links.active {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 10px;
    display: none;
    max-height: 60vh !important;
    overflow-y: auto;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu a {
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    width: 90px;
  }
}

/* ===== MOBILE DROPDOWN COLUMN FIX ===== */
@media (max-width: 767px) {

  #nav .dropdown-menu .row > div {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  #nav .dropdown-menu .dropdown-item {
    display: block;
    width: 100%;
  }

  #nav .dropdown-menu {
    width: auto !important;
  }
}

.nav-cta {
    background: #1B17FF;
    color: #fff !important;
    padding: .55rem 1.25rem;
    border-radius: 100px;
    font-size: .75rem !important;
    font-weight: 600 !important;
    transition: all .3s !important;
}

.nav-cta:hover {
    background: #1B17FF;
    color: #fff !important;
    padding: .55rem 1.25rem;
    border-radius: 100px;
    font-size: .75rem !important;
    font-weight: 600 !important;
    transition: all .3s !important;
}

        /*end nav*/
        .hero {
            background: var(--pri);
            padding: 8.5rem 2.5rem 4rem;
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(59, 130, 246, .06) 0%, transparent 60%);
            border-radius: 50%
        }

        .hg {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(59, 130, 246, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, .03) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: .5
        }

        .hi {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 4rem;
            align-items: start;
            position: relative;
            z-index: 1
        }

        .hc {
            padding-top: 1rem
        }

        .hb {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(59, 130, 246, .1);
            border: 1px solid #fff;
            border-radius: 100px;
            padding: .35rem 1rem .35rem .5rem;
            margin-bottom: 1.8rem;
            animation: fu .6s ease-out
        }

        .bd {
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            animation: pu 2s infinite
        }

        @keyframes pu {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .4
            }
        }

        .hb span {
            font-family: var(--mo);
            font-size: .65rem;
            color: #fff;
            letter-spacing: .1em;
            text-transform: uppercase;
            font-weight: 500
        }

        .hero h1 {
            font-family: var(--se);
            font-size: 3.4rem;
            color: var(--wh);
            line-height: 1.1;
            letter-spacing: -.03em;
            margin-bottom: 1.5rem;
            animation: fu .6s ease-out .1s both
        }

        .hero h1 .ac {
            color: var(--acc2)
        }

        .hero h1 em {
            font-style: italic;
            color: rgba(255, 255, 255, .6)
        }

        .hs-p {
            font-size: 1.05rem;
            color: #fff;
            max-width: 500px;
            line-height: 1.7;
            margin-bottom: 2rem;
            animation: fu .6s ease-out .2s both
        }

        .hss {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            animation: fu .6s ease-out .3s both
        }

        .hs .hn {
            font-family: var(--se);
            font-size: 1.5rem;
            color: var(--acc2);
            line-height: 1
        }

        .hs .hl {
            font-size: .68rem;
            color: #fff;
            margin-top: .2rem
        }

        @keyframes fu {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .hfw {
            animation: fu .6s ease-out .25s both
        }

        .hf {
            background: var(--wh);
            border-radius: 14px;
            padding: 2rem;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .35)
        }

        .fhd {
            text-align: center;
            margin-bottom: 1.3rem
        }

        .fhd h3 {
            font-family: var(--se);
            font-size: 1.25rem;
            color: var(--pri);
            margin-bottom: .3rem
        }

        .fhd p {
            font-size: .76rem;
            color: var(--tx)
        }

        .fr {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .7rem
        }

        .fg {
            margin-bottom: .7rem
        }

        .fg label {
            display: block;
            font-size: .7rem;
            font-weight: 600;
            color: var(--dk);
            margin-bottom: .25rem
        }

        .fg .rq {
            color: #EF4444
        }

        .fg input,
        .fg select {
            width: 100%;
            padding: .6rem .8rem;
            border: 1.5px solid var(--bd);
            border-radius: 6px;
            font-family: var(--sa);
            font-size: .82rem;
            color: var(--dk);
            background: var(--sn);
            outline: none;
            transition: all .25s
        }

        .fg input:focus,
        .fg select:focus {
            border-color: var(--acc);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, .1);
            background: var(--wh)
        }

        .fg select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right .8rem center;
            padding-right: 2rem
        }

        .fb {
            width: 100%;
            padding: .8rem;
            background: var(--acc);
            color: var(--wh);
            border: none;
            border-radius: 6px;
            font-family: var(--sa);
            font-size: .88rem;
            font-weight: 700;
            cursor: pointer;
            transition: all .3s;
            margin-top: .2rem
        }

        .fb:hover {
            background: #2563EB;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(59, 130, 246, .3)
        }

        .fb:disabled {
            opacity: .5;
            cursor: not-allowed;
            transform: none
        }

        .ff {
            text-align: center;
            font-size: .65rem;
            color: var(--tx);
            margin-top: .6rem
        }

        .fs {
            display: none;
            text-align: center;
            padding: 2rem 1rem
        }

        .fs h3 {
            font-family: var(--se);
            font-size: 1.2rem;
            color: var(--pri);
            margin-bottom: .4rem
        }

        .fs p {
            font-size: .82rem;
            color: var(--tx)
        }

        .sec {
            padding: 5rem 2.5rem
        }

        .con {
            max-width: 1100px;
            margin: 0 auto
        }

        .ey {
            font-family: var(--mo);
            font-size: .65rem;
            letter-spacing: .15em;
            text-transform: uppercase;
            margin-bottom: .8rem
        }

        .eyd {
            color: var(--dk);
            opacity: .4
        }

        .eya {
            color: var(--acc)
        }

        .st {
            font-family: var(--se);
            font-size: 2.2rem;
            color: var(--pri);
            letter-spacing: -.02em;
            margin-bottom: .8rem;
            line-height: 1.15
        }

        .st em {
            color: var(--acc);
            font-style: italic
        }

        .ss {
            color: var(--tx);
            font-size: .95rem;
            max-width: 600px;
            margin-bottom: 2.5rem;
            line-height: 1.7
        }

        .bw {
            background: var(--wh)
        }

        .bs {
            background: var(--sn)
        }

        .bp {
            background: var(--pri)
        }

        .pg {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem
        }

        .pc {
            background: var(--sn);
            border: 1px solid var(--bd);
            border-radius: 10px;
            padding: 1.5rem;
            transition: all .3s;
            position: relative;
            overflow: hidden
        }

        .pc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background:#1B17FF;
            border-radius: 0 3px 3px 0;
            opacity: .5
        }

        .pc:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(0, 0, 0, .06)
        }

        .pi {
            font-size: 1.3rem;
            margin-bottom: .6rem
        }

        .pc h4 {
            font-size: .88rem;
            font-weight: 700;
            margin-bottom: .3rem
        }

        .pc p {
            font-size: .8rem;
            color: var(--tx);
            line-height: 1.55
        }

        .ap-s {
            display: flex;
            flex-direction: column;
            gap: .8rem
        }

        .ap-r {
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: 1.2rem;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(59, 130, 246, .1);
            border-radius: 12px;
            padding: 1.4rem 1.6rem;
            transition: all .3s
        }

        .ap-r:hover {
            background: rgba(255, 255, 255, .07);
            border-color: rgba(59, 130, 246, .2);
            transform: translateX(4px)
        }

        .ap-n {
            width: 48px;
            height: 48px;
            background: rgba(59, 130, 246, .1);
            border: 1px solid #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--se);
            font-size: 1.3rem;
            color: var(--acc2);
            flex-shrink: 0
        }

        .ap-b h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--wh);
            margin-bottom: .25rem
        }

        .ap-b p {
            font-size: .82rem;
            color: #fff;
            line-height: 1.6
        }

        .ap-t {
            display: flex;
            gap: .4rem;
            margin-top: .5rem;
            flex-wrap: wrap
        }

        .ap-t span {
            font-family: var(--mo);
            font-size: .58rem;
            color: #fff;
            border: 1px solid #fff;
            padding: .15rem .5rem;
            border-radius: 4px
        }

        .svg {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem
        }

        .sv {
            display: block;
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(59, 130, 246, .08);
            border-radius: 12px;
            padding: 1.4rem;
            text-decoration: none;
            transition: all .3s;
            position: relative
        }

        .sv:hover {
            background: rgba(255, 255, 255, .07);
            border-color: rgba(59, 130, 246, .2);
            transform: translateY(-3px)
        }

        .svn {
            font-family: var(--mo);
            font-size: .6rem;
            color: var(--acc);
            letter-spacing: .1em;
            display: block;
            margin-bottom: .5rem
        }

        .sv h4 {
            font-size: .9rem;
            font-weight: 700;
            margin-bottom: .3rem
        }

        .sv p {
            font-size: .78rem;
            color: #000;
            line-height: 1.55
        }

        .sva {
            position: absolute;
            top: 1.4rem;
            right: 1.4rem;
            color: var(--acc);
            opacity: 0;
            transition: all .3s
        }

        .sv:hover .sva {
            opacity: 1;
            transform: translateX(4px)
        }

        .ig {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: .8rem
        }

        .ic {
            display: block;
            text-decoration: none;
            background: var(--wh);
            border: 1px solid var(--bd);
            border-radius: 10px;
            padding: 1.3rem;
            transition: all .3s
        }

        .ic:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
            border-color: var(--acc)
        }

        .ic h4 {
            font-size: .85rem;
            font-weight: 700;
            color: var(--pri);
            margin-bottom: .3rem
        }

        .ic p {
            font-size: .72rem;
            color: var(--tx);
            line-height: 1.5
        }

        .prw {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            padding-left: 2rem
        }

        .prw::before {
            content: '';
            position: absolute;
            left: 47px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: var(--bd)
        }

        .ps {
            display: flex;
            gap: 1.2rem;
            padding: 1.2rem 0
        }

        .pd {
            width: 32px;
            height: 32px;
            background: #1B17FF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1
        }

        .pd span {
            font-family: var(--se);
            font-size: .9rem;
            color: var(--wh)
        }

        .pb h4 {
            font-size: .9rem;
            font-weight: 700;
            margin-bottom: .2rem
        }

        .pb p {
            font-size: .82rem;
            color: var(--tx);
            line-height: 1.55
        }

        .pt {
            font-family: var(--mo);
            font-size: .62rem;
            color: var(--acc);
            margin-top: .3rem;
            display: inline-block
        }

        .csg {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem
        }

        .cc {
            border: 1px solid var(--bd);
            border-radius: 12px;
            overflow: hidden;
            background: var(--wh);
            transition: all .3s
        }

        .cc:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 36px rgba(0, 0, 0, .06)
        }

        .ct {
            background: var(--pri);
            padding: 1.3rem 1.4rem
        }

        .cty {
            font-family: var(--mo);
            font-size: .55rem;
            color: var(--acc);
            letter-spacing: .12em;
            text-transform: uppercase;
            display: block;
            margin-bottom: .4rem
        }

        .ct h4 {
            font-size: .88rem;
            color: var(--wh);
            font-weight: 600;
            margin-bottom: .3rem
        }

        .ct p {
            font-size: .74rem;
            color: #fff;
            line-height: 1.45
        }

        .cm {
            display: grid;
            grid-template-columns: 1fr 1fr
        }

        .cx {
            padding: .7rem 1rem;
            border-bottom: 1px solid var(--sn);
            border-right: 1px solid var(--sn)
        }

        .cx:nth-child(2n) {
            border-right: none
        }

        .cv {
            font-family: var(--mo);
            font-size: .8rem;
            font-weight: 600;
            color: var(--acc)
        }

        .cl {
            font-size: .62rem;
            color: var(--tx)
        }

        .tg {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem
        }

        .tc {
            background: var(--pri);
            border-radius: 12px;
            padding: 2rem;
            position: relative
        }

        .tc::before {
            content: '"';
            font-family: var(--se);
            font-size: 4rem;
            color: rgba(59, 130, 246, .1);
            position: absolute;
            top: .3rem;
            left: 1rem;
            line-height: 1
        }

        .tc blockquote {
            font-size: .88rem;
            color: #fff;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: .8rem;
            position: relative;
            z-index: 1
        }

        .ta {
            font-size: .78rem;
            color: var(--acc2);
            font-weight: 600
        }

        .tx {
            font-size: .65rem;
            color: #fff;
            margin-top: .15rem
        }

        .ctb {
            width: 100%;
            border-collapse: collapse;
            background: var(--wh);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
        }

        .ctb thead th {
            padding: 1rem 1.3rem;
            font-size: .75rem;
            font-weight: 700;
            text-align: left
        }

        .ctb thead th:first-child {
            background: var(--sn);
            color: var(--tx)
        }

        .ctb thead th:nth-child(2) {
            background: var(--bd);
            color: var(--tx);
            text-align: center
        }

        .ctb thead th:nth-child(3) {
            background: var(--acc);
            color: var(--wh);
            text-align: center
        }

        .ctb td {
            padding: .85rem 1.3rem;
            font-size: .82rem;
            border-bottom: 1px solid var(--sn)
        }

        .ctb td:first-child {
            color: var(--dk);
            font-weight: 500
        }

        .ctb td:nth-child(2) {
            text-align: center;
            color: var(--tx)
        }

        .ctb td:nth-child(3) {
            text-align: center;
            color: var(--acc);
            font-weight: 600
        }

        .lo {
            border: 1px solid var(--bd);
            border-radius: 14px;
            padding: 2rem 2.5rem;
            background: var(--wh)
        }

        .lo h3 {
            font-family: var(--se);
            font-size: 1.3rem;
            color: var(--pri);
            margin-bottom: .5rem
        }

        .lo>p {
            font-size: .85rem;
            color: var(--tx);
            line-height: 1.7;
            margin-bottom: 1rem
        }

        .cys {
            display: flex;
            flex-wrap: wrap;
            gap: .5rem
        }

        .cy {
            font-family: var(--mo);
            font-size: .65rem;
            color: var(--acc);
            background: rgba(59, 130, 246, .06);
            border: 1px solid rgba(59, 130, 246, .15);
            padding: .3rem .8rem;
            border-radius: 100px
        }

        .fi {
            border-bottom: 1px solid var(--bd)
        }

        .fq {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
            cursor: pointer;
            gap: 1rem
        }

        .fq h4 {
            font-size: .9rem;
            font-weight: 500;
            color: var(--dk)
        }

        .ft {
            width: 24px;
            height: 24px;
            border: 1.5px solid var(--bd);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all .3s
        }

        .ft svg {
            width: 12px;
            height: 12px;
            stroke: var(--tx);
            fill: none;
            stroke-width: 2;
            transition: transform .3s
        }

        .fi.open .ft {
            background: var(--acc);
            border-color: var(--acc)
        }

        .fi.open .ft svg {
            stroke: var(--wh);
            transform: rotate(45deg)
        }

        .fa {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s cubic-bezier(.16, 1, .3, 1)
        }

        .fi.open .fa {
            max-height: 400px
        }

        .fa p {
            padding-bottom: 1.2rem;
            font-size: .82rem;
            color: var(--tx);
            line-height: 1.7;
            font-weight: 500;
            font-family: 'Outfit', system-ui, sans-serif;
        }

        .cta {
            background: var(--pri);
            padding: 4rem 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(59, 130, 246, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, .02) 1px, transparent 1px);
            background-size: 50px 50px
        }

        .cta h2 {
            font-family: var(--se);
            font-size: 2.2rem;
            color: var(--wh);
            margin-bottom: .8rem;
            position: relative;
            z-index: 1
        }

        .cta h2 em {
            color: var(--acc2);
            font-style: italic
        }

        .cta p {
            color: #fff;
            font-size: .9rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1
        }

        .cb {
            display: inline-block;
            background: var(--acc);
            color: var(--wh);
            padding: .9rem 2.5rem;
            border-radius: 6px;
            font-weight: 700;
            font-size: .95rem;
            text-decoration: none;
            transition: all .3s;
            position: relative;
            z-index: 1
        }

        .cb:hover {
            background: #2563EB;
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(59, 130, 246, .25)
        }

       

     

        .fl {
            display: flex;
            gap: 1.5rem
        }

        .rv {
            opacity: 0;
            transform: translateY(30px);
            transition: all .7s cubic-bezier(.16, 1, .3, 1)
        }

        .rv.vi {
            opacity: 1;
            transform: translateY(0)
        }

        @media(max-width:1024px) {
            .hi {
                grid-template-columns: 1fr;
                gap: 2.5rem
            }

            .hero h1 {
                font-size: 2.6rem
            }

            .hf {
                max-width: 520px
            }

            .ig {
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:768px) {
            nav {
                padding: .6rem 1.2rem
            }

            .nl {
                display: none
            }

            .hero {
                padding: 5.5rem 1.5rem 3rem
            }

            .hero h1 {
                font-size: 2rem
            }

            .pg,
            .svg,
            .csg,
            .tg {
                grid-template-columns: 1fr
            }

            .ig {
                grid-template-columns: 1fr
            }

            .fr {
                grid-template-columns: 1fr
            }

            .ap-r {
                grid-template-columns: 40px 1fr
            }

            .ctb {
                font-size: .75rem
            }
        }

        .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ctb {
  width: 100%;
  min-width: 700px; /* ensures scroll on small devices */
  border-collapse: collapse;
}

.ctb th,
.ctb td {
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}

/* Optional: better mobile spacing */
@media (max-width: 768px) {
  .ctb th,
  .ctb td {
    padding: 10px;
    font-size: 14px;
  }
}
