        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }
        
        html {
            scroll-behavior: smooth
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            color: #0F1A20;
            overflow-x: hidden
        }
        
         :root {
            --t: #4AABAE;
            --td: #2E8F92;
            --tl: #6EC5C7;
            --tb: #EAF6F6;
            --d: #0F1A20;
            --g5: #F7F9FA;
            --g1: #EEF2F5;
            --g2: #DDE4E9;
            --gt: #5E7582;
            --gd: #3A4F5A
        }
        
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 14px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, .92);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(0, 0, 0, .05);
            transition: padding .3s, box-shadow .3s
        }
        
        .nav.s {
            padding: 10px 40px;
            box-shadow: 0 2px 16px rgba(0, 0, 0, .06)
        }
        
        .lo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none
        }
        
        .lo img {
            height: 40px;
            width: auto
        }
        
        .nl {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none
        }
        
        .nl a {
            color: var(--gd);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color .2s
        }
        
        .nl a:hover {
            color: var(--t)
        }
        
        .b {
            background: var(--t);
            color: #fff;
            padding: 11px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 13px;
            transition: all .25s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 7px
        }
        
        .b:hover {
            background: var(--td);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(74, 171, 174, .3)
        }
        
        .b svg {
            width: 16px;
            height: 16px;
            fill: #fff
        }
        
        .bg {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px
        }
        
        .bg svg {
            width: 26px;
            height: 26px;
            stroke: var(--d);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round
        }
        
        .he {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 110px 40px 70px;
            position: relative;
            background: none;
            overflow: hidden;
        }
        
        .he::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(8, 15, 20, 0.85) 0%, rgba(20, 35, 45, 0.45) 100%);
            z-index: 1;
        }
        
        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        
        .hbg {
            position: absolute;
            top: -120px;
            right: -120px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: var(--t);
            opacity: .15;
            filter: blur(50px);
            mix-blend-mode: color-dodge;
        }
        
        .hbg2 {
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: var(--t);
            opacity: .15;
            filter: blur(50px);
            mix-blend-mode: color-dodge;
        }
        
        .hc {
            position: relative;
            z-index: 2;
            max-width: 700px;
            text-align: center
        }
        
        .hba {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            border-radius: 50px;
            padding: 7px 18px;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
        }
        
        .hdo {
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            animation: bk 2s infinite
        }
        
        @keyframes bk {
            0%,
            100% {
                opacity: 1
            }
            50% {
                opacity: .3
            }
        }
        
        .he h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(38px, 6vw, 68px);
            font-weight: 900;
            line-height: 1.06;
            letter-spacing: -1.5px;
            margin-bottom: 10px;
            color: #ffffff;
            text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
        }
        
        .he h1 em {
            font-style: normal;
            color: #6EC5C7;
            text-shadow: 0 0 25px rgba(110, 197, 199, 0.8);
            -webkit-text-fill-color: initial;
            background: none;
            display: inline-block;
        }
        
        .hsub {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(15px, 2.2vw, 22px);
            font-weight: 300;
            color: #ffffff;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
            margin-bottom: 18px;
            font-style: italic
        }
        
        .he p {
            font-size: 15px;
            color: #E0E9ED;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
            max-width: 490px;
            margin: 0 auto 32px;
            line-height: 1.7
        }
        
        .hbt {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap
        }
        
        .bo {
            background: #fff;
            color: var(--d);
            padding: 11px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 13px;
            border: 2px solid var(--g2);
            transition: all .25s;
            background: #fff
        }
        
        .bo:hover {
            border-color: var(--t);
            color: var(--t)
        }
        
        .fs {
            display: grid;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-radius: 14px;
            grid-template-columns: repeat(4, 1fr);
            max-width: 1060px;
            margin: 60px auto 30px;
            position: relative;
            z-index: 10;
        }
        
        .ft {
            padding: 24px 20px;
            text-align: center;
            transition: transform .2s
        }
        
        .ft:last-child {
            border-right: none
        }
        
        .ft:hover {
            transform: translateY(-4px)
        }
        
        .fi {
            width: 36px;
            height: 36px;
            margin: 0 auto 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-4px);
            border-radius: 10px
        }
        
        .fi svg {
            width: 18px;
            height: 18px;
            stroke: var(--t);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }
        
        .ft h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 3px
        }
        
        .ft p {
            font-size: 12px;
            color: var(--gt);
            line-height: 1.4
        }
        
        .sc {
            padding: 80px 40px
        }
        
        .sl {
            display: inline-block;
            font-family: 'Outfit', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--t);
            margin-bottom: 12px;
            transform: translateY(-4px);
            padding: 5px 14px;
            border-radius: 6px
        }
        
        .st {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -.5px;
            line-height: 1.15
        }
        
        .ss {
            font-size: 14px;
            color: var(--gt);
            max-width: 440px;
            line-height: 1.6
        }
        
        .fl {
            background: var(--g5)
        }
        
        .fh {
            text-align: center;
            margin-bottom: 48px
        }
        
        .fh .ss {
            margin: 0 auto
        }
        
        .fg {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1140px;
            margin: 0 auto
        }
        
        .card {
            background: #fff;
            border: 1px solid var(--g2);
            overflow: hidden;
            border-radius: 16px;
            transition: transform .3s, box-shadow .3s
        }
        
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, .1)
        }
        
        .ci {
            height: 210px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, var(--g1) 0%, #fff 100%);
            padding: 8px
        }
        
        .ci img {
            max-width: 96%;
            max-height: 94%;
            object-fit: contain;
            transition: transform .4s;
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .15))
        }
        
        .card:hover .ci img {
            transform: scale(1.04)
        }
        
        .cb {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 3px 10px;
            border-radius: 16px;
            font-size: 10px;
            font-weight: 700;
            color: var(--t);
            font-family: 'Outfit', sans-serif
        }
        
        .cd {
            padding: 18px 20px
        }
        
        .cn {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 16px
        }
        
        .cy {
            font-size: 12px;
            color: var(--gt);
            margin: 2px 0 12px
        }
        
        .cs {
            display: flex;
            gap: 12px;
            margin-bottom: 14px
        }
        
        .csp {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: var(--gt)
        }
        
        .csp svg {
            width: 13px;
            height: 13px;
            stroke: var(--t);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }
        
        .cf {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px solid var(--g1)
        }
        
        .cp {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 20px;
            color: var(--t)
        }
        
        .cp span {
            font-size: 12px;
            font-weight: 400;
            color: var(--gt)
        }
        
        .bw {
            background: #25D366;
            color: #fff;
            padding: 9px 16px;
            border-radius: 10px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 12px;
            transition: all .25s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            border: none;
            cursor: pointer
        }
        
        .bw:hover {
            background: #1DA851;
            transform: translateY(-1px)
        }
        
        .bw svg {
            width: 14px;
            height: 14px;
            fill: #fff
        }
        
        .disc {
            background: linear-gradient(135deg, var(--t), var(--td));
            color: #fff;
            text-align: center;
            padding: 18px 40px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            font-weight: 600;
            margin-top: 60px;
            border-radius: 16px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto
        }
        
        .disc strong {
            font-size: 18px
        }
        
        .wy {
            background: #fff
        }
        
        .wg {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            max-width: 1060px;
            margin: 0 auto;
            align-items: center
        }
        
        .ws {
            border-radius: 20px;
            background: linear-gradient(135deg, var(--tb), var(--g1));
            padding: 44px 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 28px
        }
        
        .sn {
            font-family: 'Outfit', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--t);
            line-height: 1;
            text-align: center
        }
        
        .slb {
            font-size: 13px;
            color: var(--gt);
            text-align: center
        }
        
        .wl {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 22px
        }
        
        .wi {
            display: flex;
            gap: 16px
        }
        
        .wic {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            transform: translateY(-4px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border: 1px solid rgba(74, 171, 174, .12)
        }
        
        .wic svg {
            width: 20px;
            height: 20px;
            stroke: var(--t);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }
        
        .wi h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 3px
        }
        
        .wi p {
            font-size: 13px;
            color: var(--gt);
            line-height: 1.5
        }
        
        .ct {
            background: var(--d);
            color: #fff;
            text-align: center;
            position: relative;
        }
        
        .ct::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(74, 171, 174, .15), transparent 70%)
        }
        
        .ct .sl {
            background: rgba(74, 171, 174, .15);
            color: var(--tl)
        }
        
        .ct .st {
            color: #fff;
            max-width: 500px;
            margin: 0 auto 12px
        }
        
        .ct>div>p {
            color: rgba(255, 255, 255, .55);
            font-size: 14px;
            max-width: 420px;
            margin: 0 auto 28px;
            line-height: 1.6
        }
        
        .faq {
            background: var(--g5)
        }
        
        .faq-list {
            max-width: 720px;
            margin: 0 auto
        }
        
        .faq-item {
            border-bottom: 1px solid var(--g2);
            padding: 20px 0
        }
        
        .faq-q {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px
        }
        
        .faq-q::after {
            content: '+';
            font-size: 20px;
            color: var(--t);
            transition: transform .2s;
            flex-shrink: 0
        }
        
        .faq-item.open .faq-q::after {
            transform: rotate(45deg)
        }
        
        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: all .3s ease;
            font-size: 14px;
            color: var(--gt);
            line-height: 1.6
        }
        
        .faq-item.open .faq-a {
            max-height: 800px;
            padding-top: 12px
        }
        
        .ab {
            background: #fff
        }
        
        .ag {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            max-width: 1060px;
            margin: 0 auto;
            align-items: center
        }
        
        .at p {
            font-size: 14px;
            color: var(--gt);
            line-height: 1.7;
            margin-bottom: 12px
        }
        
        .cc {
            background: var(--g5);
            padding: 36px;
            border: 1px solid var(--g2)
        }
        
        .cc h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 20px;
            margin-bottom: 20px
        }
        
        .cci {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 13px;
            color: var(--gd)
        }
        
        .ccic {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            transform: translateY(-4px);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }
        
        .ccic svg {
            width: 16px;
            height: 16px;
            stroke: var(--t);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }
        
        .cwa {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #25D366;
            color: #fff;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 14px;
            margin-top: 12px;
            transition: all .25s
        }
        
        .cwa:hover {
            background: #1DA851;
            transform: translateY(-1px)
        }
        
        .cwa svg {
            width: 18px;
            height: 18px;
            fill: #fff
        }
        
        .fo {
            background: var(--d);
            color: rgba(255, 255, 255, .6);
            padding: 52px 40px 24px
        }
        
        .fog {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 36px;
            max-width: 1060px;
            margin: 0 auto 36px
        }
        
        .fob p {
            font-size: 12px;
            color: rgba(255, 255, 255, .35);
            line-height: 1.6;
            margin-top: 14px;
            max-width: 240px
        }
        
        .fc h5 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 12px;
            margin-bottom: 14px;
            color: #fff
        }
        
        .fc ul {
            list-style: none
        }
        
        .fc li {
            margin-bottom: 8px
        }
        
        .fc a {
            color: rgba(255, 255, 255, .4);
            text-decoration: none;
            font-size: 12px;
            transition: color .2s
        }
        
        .fc a:hover {
            color: var(--tl)
        }
        
        .fci {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, .4)
        }
        
        .fci svg {
            width: 13px;
            height: 13px;
            stroke: var(--tl);
            fill: none;
            stroke-width: 2;
            flex-shrink: 0
        }
        
        .fbt {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, .07);
            font-size: 11px;
            color: rgba(255, 255, 255, .25)
        }
        
        .wf {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
            z-index: 90;
            transition: all .25s;
            text-decoration: none
        }
        
        .wf:hover {
            transform: scale(1.08)
        }
        
        .wf svg {
            width: 28px;
            height: 28px;
            fill: #fff
        }
        
        .mo {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, .97);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px
        }
        
        .mo.op {
            display: flex
        }
        
        .mo a {
            color: var(--d);
            text-decoration: none;
            font-family: 'Outfit', sans-serif;
            font-size: 20px;
            font-weight: 600
        }
        
        .mx {
            position: absolute;
            top: 16px;
            right: 20px;
            background: none;
            border: none;
            font-size: 30px;
            color: var(--d);
            cursor: pointer
        }
        
        .ov {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(15, 26, 32, .6);
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px
        }
        
        .ov.op {
            display: flex
        }
        
        .md {
            background: #fff;
            border-radius: 20px;
            max-width: 440px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .2)
        }
        
        .mh {
            padding: 24px 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: start
        }
        
        .mh h3 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 18px
        }
        
        .mh p {
            font-size: 12px;
            color: var(--gt);
            margin-top: 2px
        }
        
        .mhx {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--gt);
            padding: 0 4px
        }
        
        .mb {
            padding: 20px 24px 24px
        }
        
        .mc {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--g5);
            border-radius: 12px;
            padding: 12px;
            margin-bottom: 20px
        }
        
        .mc img {
            width: 100px;
            height: 60px;
            object-fit: contain;
            border-radius: 6px
        }
        
        .mci {
            font-family: 'Outfit', sans-serif
        }
        
        .mci strong {
            font-size: 14px;
            display: block
        }
        
        .mci span {
            font-size: 12px;
            color: var(--gt)
        }
        
        .ml {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 12px;
            color: var(--gd);
            margin-bottom: 6px;
            display: block
        }
        
        .mds {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 16px
        }
        
        .mi {
            width: 100%;
            padding: 10px 12px;
            border-radius: 10px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: var(--d);
            outline: none;
            transition: border .2s
        }
        
        .mi:focus {
            border-color: var(--t)
        }
        
        .ms {
            transform: translateY(-4px);
            border-radius: 12px;
            padding: 14px 16px;
            margin-bottom: 20px
        }
        
        .mr {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            margin-bottom: 4px
        }
        
        .mr.disc-row {
            color: #25D366;
            font-weight: 600
        }
        
        .mr.tot {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 16px;
            color: var(--t);
            border-top: 1px solid rgba(74, 171, 174, .2);
            padding-top: 8px;
            margin-top: 8px
        }
        
        .mr.dep {
            font-size: 12px;
            color: var(--gt);
            font-style: italic
        }
        
        .mwb {
            width: 100%;
            background: #25D366;
            color: #fff;
            padding: 14px;
            border-radius: 12px;
            border: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all .25s
        }
        
        .mwb:hover {
            background: #1DA851
        }
        
        .mwb svg {
            width: 20px;
            height: 20px;
            fill: #fff
        }
        
        .mn {
            font-size: 11px;
            color: var(--gt);
            text-align: center;
            margin-top: 12px;
            line-height: 1.4
        }
        
        @media(max-width:900px) {
            .nl {
                display: none
            }
            .bg {
                display: block
            }
            .nav {
                padding: 12px 20px
            }
            .he {
                padding: 100px 20px 56px
            }
            .sc {
                padding: 56px 20px
            }
            .fs {
                grid-template-columns: 1fr 1fr;
                margin: -28px 16px 0;
                border-radius: 14px
            }
            .ft:nth-child(2) {
                border-right: none
            }
            .fg {
                grid-template-columns: 1fr;
                max-width: 380px
            }
            .wg,
            .ag {
                grid-template-columns: 1fr;
                gap: 32px
            }
            .fog {
                grid-template-columns: 1fr 1fr;
                gap: 20px
            }
            .disc {
                margin: 40px 16px 0
            }
        }
        
        @media(max-width:600px) {
            .fs {
                grid-template-columns: 1fr
            }
            .ft {
                border-right: none;
                border-bottom: 1px solid var(--g1)
            }
            .ft:last-child {
                border-bottom: none
            }
            .fog {
                grid-template-columns: 1fr
            }
            .hbt {
                flex-direction: column;
                align-items: center
            }
        }
        
        .hid-svg {
            position: absolute;
            width: 0;
            height: 0;
        }
        
        .h-32 {
            height: 32px;
        }
        
        .mb-28 {
            margin-bottom: 28px;
        }
        
        .t-col {
            color: var(--t);
        }
        
        .rel-z2 {
            position: relative;
            z-index: 2;
        }
        
        .t-cent-mb-40 {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .mb-18 {
            margin-bottom: 18px;
        }
        
        .lo-img {
            height: 34px;
            filter: brightness(1.3);
        }
        
        .d-none {
            display: none;
        }
        
        .he::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15, 26, 32, 0.85) 0%, rgba(15, 26, 32, 0.5) 100%);
            z-index: 1;
        }
        
        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }