 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --o: #FF6B00;
     --b: #0A1628;
     --g: #64748b;
     --br: #ffffff;
     --li: #ffffff;
 }

 body {
     background: #fff;
     color: var(--b);
     overflow-x: hidden;
     font-family: 'Inter', sans-serif;
 }

 /* NAV */
 #nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 9999;
     height: 110px;
     background: #ffffff;
     backdrop-filter: blur(12px);
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 6%;
     transition: box-shadow .3s;
 }

 #nav.sh {
     box-shadow: 0 4px 30px rgba(10, 22, 40, .10);
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
 }

 .logo-ic {
     width: 42px;
     height: 42px;
     background: var(--b);
     border-radius: 11px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 15px;
     font-weight: 900;
     color: var(--o);
 }

 .logo-tx {
     font-size: 19px;
     font-weight: 800;
     color: var(--b);
 }

 .logo-tx em {
     color: var(--o);
     font-style: normal;
 }

 .nl {
     display: flex;
     gap: 36px;
     list-style: none;
     align-items: center;
 }

 .nl a {
     text-decoration: none;
     color: var(--b);
     font-size: 15px;
     /* font-weight: 400; */
     position: relative;
     padding-bottom: 3px;
     transition: color .2s;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .nl a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--o);
     transition: width .3s;
     border-radius: 2px;
 }

 .nl a:hover {
     color: var(--o);
 }

 .nl a:hover::after {
     width: 100%;
 }

 /* DROPDOWN */
 .dropdown {
     position: relative;
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%) translateY(15px);
     background: #fff;
     min-width: 260px;
     border-radius: 16px;
     padding: 15px 0;
     box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
     border: 1px solid var(--br);
     z-index: 100;
     display: flex;
     flex-direction: column;
 }

 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateX(-50%) translateY(0);
 }

 .dropdown-menu a {
     padding: 12px 24px;
     font-size: 14px;
     font-weight: 500;
     color: var(--g);
     display: block;
     transition: all 0.2s;
 }

 .dropdown-menu a::after {
     display: none;
 }

 .dropdown-menu a:hover {
     background: #f8fafc;
     color: var(--b);
     padding-left: 28px;
 }

 .dropdown-menu a i {
     color: var(--o);
     margin-right: 8px;
 }

 .ncta {
     background: var(--o);
     color: #fff;
     border: none;
     padding: 11px 26px;
     border-radius: 9px;
     font-size: 14px;
     font-weight: 700;
     cursor: pointer;
     font-family: 'Inter', sans-serif;
     transition: background .2s, transform .15s;
 }

 .ncta:hover {
     background: #e55f00;
     transform: translateY(-1px);
 }

 .hbg {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     background: none;
     border: none;
     padding: 4px;
 }

 .hbg span {
     width: 24px;
     height: 2px;
     background: var(--b);
     border-radius: 2px;
     display: block;
     transition: .3s;
 }

 .hbg.op span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 5px);
 }

 .hbg.op span:nth-child(2) {
     opacity: 0;
 }

 .hbg.op span:nth-child(3) {
     transform: rotate(-45deg) translate(5px, -5px);
 }

 .mnav {
     display: none;
     position: fixed;
     top: 70px;
     left: 0;
     right: 0;
     background: #fff;
     z-index: 9998;
     flex-direction: column;
     box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
 }

 .mnav.op {
     display: flex;
 }

 .mnav a {
     padding: 16px 6%;
     font-size: 16px;
     font-weight: 600;
     text-decoration: none;
     color: var(--b);
     border-bottom: 1px solid var(--br);
     transition: color .2s;
 }

 .mnav a:hover {
     color: var(--o);
 }

 /* MNAV DROPDOWN HACK */
 .mnav-sub {
     background: #f8fafc;
     display: none;
     flex-direction: column;
 }

 .mnav-sub.active {
     display: flex;
 }

 .mnav-sub a {
     padding: 12px 10%;
     font-size: 14px;
     font-weight: 500;
     color: var(--g);
     border-bottom: 1px solid #e2e8f0;
 }

 .m-tog {
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
 }

 .mcta {
     margin: 16px 6%;
     background: var(--o);
     color: #fff;
     border: none;
     padding: 14px;
     border-radius: 9px;
     font-size: 15px;
     font-weight: 700;
     cursor: pointer;
     font-family: 'Inter', sans-serif;
 }

 /* HERO */
 #hero {
     position: relative;
     background: #0f1014;
     color: #fff;
     padding: 180px 6% 100px;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     min-height: 100vh;
 }

 /* Subtle vertical grid lines like reference */
 #hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
     background-size: 10% 100%;
     z-index: 1;
     pointer-events: none;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     width: 100%;
     max-width: 1300px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
 }

 .hero-left {
     flex: 1;
     max-width: 650px;
 }

 .hero-top-label {
     font-size: 11px;
     font-weight: 800;
     color: var(--o);
     letter-spacing: 4px;
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .hero-left h1 {
     font-size: clamp(40px, 6vw, 76px);
     font-weight: 900;
     line-height: 1.05;
     margin-bottom: 10px;
     letter-spacing: -2px;
 }

 .hero-left h1 em {
     color: var(--o);
     font-style: normal;
 }

 .hero-sub {
     font-size: clamp(20px, 3vw, 32px);
     font-weight: 800;
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 30px;
     letter-spacing: 1px;
     text-transform: uppercase;
 }

 .hero-desc {
     font-size: 17px;
     color: rgba(255, 255, 255, 0.7);
     line-height: 1.8;
     margin-bottom: 35px;
     max-width: 540px;
 }

 .hero-pills {
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
     margin-bottom: 45px;
 }

 .hpill {
     border: 1px solid rgba(255, 107, 0, 0.4);
     border-radius: 100px;
     padding: 10px 20px;
     font-size: 14px;
     font-weight: 600;
     color: var(--o);
     display: flex;
     align-items: center;
     gap: 10px;
     background: rgba(255, 107, 0, 0.05);
 }

 .hero-btns {
     display: flex;
     gap: 20px;
     margin-bottom: 50px;
 }

 .hbtn-p {
     background: var(--o);
     color: #fff;
     border: none;
     padding: 16px 36px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 800;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: transform .2s, background .2s;
 }

 .hbtn-p:hover {
     background: #e55f00;
     transform: translateY(-3px);
 }

 .hbtn-s {
     background: transparent;
     color: #fff;
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 16px 36px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 700;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: border-color .2s, background .2s;
 }

 .hbtn-s:hover {
     border-color: #fff;
     background: rgba(255, 255, 255, 0.05);
 }

 .hero-reviews {
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .stars {
     color: #FFB800;
     font-size: 15px;
     display: flex;
     gap: 4px;
 }

 .review-text {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.6);
 }

 .review-text strong {
     color: #fff;
     font-weight: 800;
     font-size: 16px;
 }

 /* RIGHT SIDE */
 .hero-right {
     flex: 1;
     position: relative;
     display: flex;
     justify-content: flex-end;
     align-items: center;
 }

 .h-circle-wrap {
     position: relative;
     width: 100%;
     max-width: 550px;
     aspect-ratio: 1;
     /* border-radius: 50%; */
 }

 .h-circle-bg {
     position: absolute;
     inset: -25px;
     border: 2px dashed rgba(255, 107, 0, 0.3);
     border-radius: 50%;
     animation: h-rotate 60s linear infinite;
 }

 @keyframes h-rotate {
     from {
         transform: rotate(0deg);
     }

     to {
         transform: rotate(360deg);
     }
 }

 .h-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
 }

 .h-badge-top {
     position: absolute;
     top: 8%;
     right: -10px;
     background: #0f1014;
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 100px;
     padding: 10px 24px;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 14px;
     font-weight: 800;
     color: var(--o);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     z-index: 10;
 }

 .h-badge-top .dot {
     width: 8px;
     height: 8px;
     background: #22c55e;
     border-radius: 50%;
     box-shadow: 0 0 10px #22c55e;
     animation: blink 2s infinite;
 }

 @keyframes blink {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }
 }

 .h-badge-price {
     position: absolute;
     bottom: 5%;
     left: -20px;
     background: var(--o);
     color: #fff;
     border-radius: 20px;
     padding: 24px 30px;
     text-align: center;
     box-shadow: 0 20px 40px rgba(255, 107, 0, 0.3);
     z-index: 10;
 }

 .h-badge-price h4 {
     font-size: 42px;
     font-weight: 900;
     line-height: 1;
     margin-bottom: 5px;
 }

 .h-badge-price span {
     font-size: 12px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 @media (max-width: 991px) {
     #hero {
         padding: 140px 6% 80px;
     }

     .hero-content {
         flex-direction: column;
         text-align: center;
     }

     .hero-left {
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .hero-desc {
         text-align: center;
     }

     .hero-pills {
         justify-content: center;
     }

     .hero-btns {
         justify-content: center;
         flex-wrap: wrap;
     }

     .hero-reviews {
         justify-content: center;
     }

     .hero-right {
         margin-top: 60px;
         justify-content: center;
     }

     .h-badge-top {
         right: 0;
     }

     .h-badge-price {
         left: 0;
     }
 }

 /* SHARED */
 .sl {
     display: inline-block;
     background: var(--o);
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 3px;
     text-transform: uppercase;
     padding: 6px 18px;
     border-radius: 100px;
     margin-bottom: 14px;
 }

 .st {
     font-size: clamp(26px, 3.5vw, 50px);
     font-weight: 800;
     line-height: 1.18;
     letter-spacing: -.8px;
 }

 .st em {
     color: var(--o);
     font-style: normal;
 }

 /* SERVICES */
 #services {
     padding: 0;
 }

 .si {
     text-align: center;
     padding: 100px 6% 80px;
 }

 .si p {
     margin: 18px auto 0;
     max-width: 520px;
     color: var(--g);
     font-size: 17px;
     line-height: 1.7;
 }

 .sg-container {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 6% 100px;
 }

 @media (max-width: 900px) {
     .sg-container {
         grid-template-columns: 1fr;
     }
 }

 .sg-item {
     background: #fff;
     border: 1px solid var(--br);
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(10, 22, 40, 0.04);
     transition: transform 0.4s, box-shadow 0.4s;
     display: flex;
     flex-direction: column;
 }

 .sg-item:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
 }

 .sg-img-box {
     width: 100%;
     height: 280px;
     overflow: hidden;
     position: relative;
 }

 .sg-img-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .sg-item:hover .sg-img-box img {
     transform: scale(1.08);
 }

 .sg-info {
     padding: 35px;
     flex: 1;
     display: flex;
     flex-direction: column;
     position: relative;
 }

 .sg-item .sbn {
     position: absolute;
     top: 20px;
     right: 30px;
     font-size: 60px;
     font-weight: 900;
     color: var(--o);
     opacity: 0.08;
     line-height: 1;
     margin: 0;
 }

 .sg-info h3 {
     font-size: 24px;
     font-weight: 800;
     margin-bottom: 12px;
     color: var(--b);
 }

 .sg-info p {
     font-size: 16px;
     color: var(--g);
     line-height: 1.6;
     margin-bottom: 24px;
 }

 .sg-info .sbt {
     margin-top: auto;
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
 }

 .sg-image-only {
     position: relative;
     border: none;
     background: none;
     box-shadow: none;
 }

 .sg-image-only:hover {
     transform: none;
     box-shadow: none;
 }

 .sg-image-only img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 20px;
 }

 .sg-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, rgba(10, 22, 40, 0.2) 60%);
     display: flex;
     align-items: flex-end;
     padding: 35px;
     border-radius: 20px;
 }

 .sg-overlay h3 {
     color: #fff;
     font-size: 32px;
     font-weight: 800;
     line-height: 1.2;
 }

 .sg-overlay em {
     color: var(--o);
     font-style: normal;
 }

 .tag {
     padding: 7px 18px;
     border-radius: 100px;
     font-size: 13px;
     font-weight: 600;
 }

 .to {
     background: var(--o);
     color: #fff;
 }

 .tb {
     background: var(--b);
     color: #fff;
 }

 /* PRICING */
 #pricing {
     padding: 110px 6%;
     background: #fff;
     position: relative;
     z-index: 10;
 }

 .ph {
     text-align: center;
     margin-bottom: 64px;
 }

 .ph p {
     margin: 18px auto 0;
     max-width: 500px;
     color: var(--g);
     font-size: 17px;
 }

 .pg {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
     gap: 28px;
     max-width: 1100px;
     margin: 0 auto;
 }

 .pc {
     background: #fff;
     border: 2px solid var(--br);
     border-radius: 22px;
     padding: 42px 36px;
     position: relative;
     overflow: hidden;
     transition: border-color .3s, transform .35s, box-shadow .35s;
 }

 .pc::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: var(--o);
 }

 .pc:hover {
     border-color: var(--o);
     transform: translateY(-10px);
     box-shadow: 0 24px 60px rgba(255, 107, 0, .13);
 }

 .pc.ft {
     background: var(--b);
     border-color: var(--b);
 }

 .pc.ft:hover {
     border-color: var(--o);
 }

 .pb {
     position: absolute;
     top: 22px;
     right: 22px;
     background: var(--o);
     color: #fff;
     font-size: 10px;
     font-weight: 800;
     letter-spacing: 2px;
     text-transform: uppercase;
     padding: 5px 14px;
     border-radius: 100px;
 }

 .pc h3 {
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 6px;
     color: var(--b);
 }

 .pc.ft h3 {
     color: #fff;
 }

 .pp {
     font-size: 44px;
     font-weight: 900;
     color: var(--o);
     margin: 22px 0 4px;
     line-height: 1;
 }

 .ppr {
     font-size: 14px;
     color: var(--g);
     margin-bottom: 28px;
 }

 .pc.ft .ppr {
     color: rgba(255, 255, 255, .5);
 }

 .pf {
     list-style: none;
 }

 .pf li {
     padding: 11px 0;
     border-bottom: 1px solid var(--br);
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 15px;
     color: var(--b);
 }

 .pc.ft .pf li {
     color: rgba(255, 255, 255, .85);
     border-color: rgba(255, 255, 255, .12);
 }

 .pf li::before {
     content: '✓';
     color: var(--o);
     font-weight: 800;
     font-size: 15px;
     flex-shrink: 0;
 }

 .pbt {
     display: block;
     width: 100%;
     margin-top: 32px;
     background: var(--o);
     color: #fff;
     border: none;
     padding: 15px;
     border-radius: 11px;
     font-size: 15px;
     font-weight: 700;
     cursor: pointer;
     font-family: 'Inter', sans-serif;
     transition: background .2s, transform .15s;
 }

 .pbt:hover {
     background: #e55f00;
     transform: translateY(-2px);
 }

 .pbt.ol {
     background: transparent;
     border: 2px solid rgba(255, 255, 255, .3);
     color: #fff;
 }

 .pbt.ol:hover {
     background: var(--o);
     border-color: var(--o);
 }

 /* PARTNERS */
 #partners {
     padding: 60px 0;
     background: #f8fafc;
     border-top: 1px solid var(--br);
     border-bottom: 1px solid var(--br);
     overflow: hidden;
 }

 .pt-head {
     text-align: center;
     font-size: 13px;
     font-weight: 800;
     color: var(--g);
     text-transform: uppercase;
     letter-spacing: 3px;
     margin-bottom: 40px;
 }

 .pt-track-wrap {
     width: 100%;
     overflow: hidden;
     position: relative;
     display: flex;
 }

 .pt-track-wrap::before,
 .pt-track-wrap::after {
     content: '';
     position: absolute;
     top: 0;
     bottom: 0;
     width: 120px;
     z-index: 2;
     pointer-events: none;
 }

 .pt-track-wrap::before {
     left: 0;
     background: linear-gradient(to right, #f8fafc, transparent);
 }

 .pt-track-wrap::after {
     right: 0;
     background: linear-gradient(to left, #f8fafc, transparent);
 }

 .pt-track {
     display: flex;
     align-items: center;
     gap: 70px;
     animation: pt-scroll 35s linear infinite;
     white-space: nowrap;
     padding-left: 70px;
 }

 .pt-track:hover {
     animation-play-state: paused;
 }

 @keyframes pt-scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 .pt-logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-size: 19px;
     font-weight: 800;
     color: var(--b);
     opacity: 0.5;
     transition: opacity 0.3s, transform 0.3s;
     cursor: default;
 }

 .pt-logo:hover {
     opacity: 1;
     transform: scale(1.05);
 }

 .pt-logo img {
     height: 38px;
     width: auto;
     object-fit: contain;
     filter: grayscale(100%) contrast(1.2) opacity(0.8);
     transition: filter 0.3s;
 }

 .pt-logo:hover img {
     filter: grayscale(0%) contrast(1) opacity(1);
 }

 @media (max-width: 768px) {
     .pt-logo img {
         height: 28px;
     }

     .pt-logo {
         font-size: 15px;
         gap: 8px;
     }

     .pt-track {
         gap: 40px;
         padding-left: 40px;
     }
 }

 /* CONTACT */
 #contact {
     padding: 110px 6%;
     background: var(--li);
     position: relative;
     z-index: 10;
 }

 .cw {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     max-width: 1100px;
     margin: 0 auto;
     align-items: start;
 }

 .cl p {
     color: var(--g);
     font-size: 17px;
     line-height: 1.75;
     margin: 18px 0 40px;
 }

 .cd {
     display: flex;
     align-items: flex-start;
     gap: 16px;
     margin-bottom: 26px;
 }

 .ci {
     width: 50px;
     height: 50px;
     border-radius: 13px;
     background: var(--o);
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     flex-shrink: 0;
 }

 .ct strong {
     display: block;
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: var(--g);
     margin-bottom: 5px;
 }

 .ct span {
     font-size: 16px;
     font-weight: 600;
     color: var(--b);
 }

 .cfb {
     background: #fff;
     border-radius: 22px;
     padding: 42px;
     box-shadow: 0 6px 40px rgba(10, 22, 40, .07);
 }

 .fr {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 18px;
 }

 .fg {
     margin-bottom: 20px;
 }

 .fg label {
     display: block;
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     color: var(--b);
     margin-bottom: 9px;
 }

 .fg input,
 .fg textarea {
     width: 100%;
     padding: 14px 17px;
     border: 2px solid var(--br);
     border-radius: 11px;
     font-size: 15px;
     font-family: 'Inter', sans-serif;
     color: var(--b);
     background: #fff;
     outline: none;
     transition: border-color .2s;
 }

 .fg input:focus,
 .fg textarea:focus {
     border-color: var(--o);
 }

 .fg textarea {
     height: 120px;
     resize: vertical;
 }

 .sbtn {
     width: 100%;
     background: var(--o);
     color: #fff;
     border: none;
     padding: 16px;
     border-radius: 11px;
     font-size: 16px;
     font-weight: 700;
     cursor: pointer;
     font-family: 'Inter', sans-serif;
     transition: background .2s, transform .15s;
     margin-top: 6px;
 }

 .sbtn:hover {
     background: #e55f00;
     transform: translateY(-2px);
 }

 /* FOOTER */
 footer {
     background: var(--b);
     color: rgba(255, 255, 255, .6);
     padding: 72px 6% 0;
     position: relative;
     z-index: 10;
 }

 .fg4 {
     display: grid;
     grid-template-columns: 1.8fr 1fr 1fr 1fr;
     gap: 50px;
     margin-bottom: 56px;
 }

 .fl {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 18px;
 }

 .flic {
     width: 42px;
     height: 42px;
     background: rgba(255, 255, 255, .08);
     border-radius: 11px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 15px;
     font-weight: 900;
     color: var(--o);
 }

 .flt {
     font-size: 19px;
     font-weight: 800;
     color: #fff;
 }

 .flt em {
     color: var(--o);
     font-style: normal;
 }

 .fd {
     font-size: 14px;
     line-height: 1.75;
     max-width: 260px;
 }

 .fc h4 {
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2.5px;
     margin-bottom: 22px;
 }

 .fc ul {
     list-style: none;
 }

 .fc ul li {
     margin-bottom: 13px;
 }

 .fc ul li a {
     color: rgba(255, 255, 255, .6);
     text-decoration: none;
     font-size: 14px;
     transition: color .2s;
 }

 .fc ul li a:hover {
     color: var(--o);
 }

 .fsc {
     display: flex;
     flex-direction: column;
     gap: 13px;
 }

 .fsl {
     display: flex;
     align-items: center;
     gap: 13px;
     text-decoration: none;
     color: rgba(255, 255, 255, .6);
     font-size: 14px;
     transition: color .2s;
 }

 .fsl:hover {
     color: var(--o);
 }

 .fsic {
     width: 38px;
     height: 38px;
     border-radius: 9px;
     background: rgba(255, 255, 255, .08);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     color: #fff;
     transition: background .2s;
     flex-shrink: 0;
 }

 .fsl:hover .fsic {
     background: var(--o);
 }

 .fbot {
     border-top: 1px solid rgba(255, 255, 255, .08);
     padding: 26px 0;
     text-align: center;
     font-size: 13px;
     color: rgba(255, 255, 255, .35);
 }

 .fbot em {
     color: var(--o);
     font-style: normal;
 }

 /* MODAL */
 .mov {
     display: none;
     position: fixed;
     inset: 0;
     background: rgba(10, 22, 40, .78);
     z-index: 99999;
     align-items: center;
     justify-content: center;
     backdrop-filter: blur(6px);
 }

 .mov.op {
     display: flex;
 }

 .mod {
     background: #fff;
     border-radius: 24px;
     padding: 50px 44px;
     max-width: 530px;
     width: 93%;
     position: relative;
     animation: mp .35s cubic-bezier(.22, 1, .36, 1);
     max-height: 92vh;
     overflow-y: auto;
 }

 @keyframes mp {
     from {
         opacity: 0;
         transform: scale(.88) translateY(30px);
     }

     to {
         opacity: 1;
         transform: scale(1) translateY(0);
     }
 }

 .mc {
     position: absolute;
     top: 18px;
     right: 18px;
     width: 38px;
     height: 38px;
     border-radius: 50%;
     border: none;
     background: var(--li);
     cursor: pointer;
     font-size: 18px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--b);
     transition: background .2s, color .2s;
 }

 .mc:hover {
     background: var(--o);
     color: #fff;
 }

 .mod h2 {
     font-size: 28px;
     font-weight: 800;
     margin-bottom: 6px;
 }

 .mod h2 em {
     color: var(--o);
     font-style: normal;
 }

 .mod>p {
     color: var(--g);
     margin-bottom: 28px;
     font-size: 15px;
 }

 /* REVEAL */
 .rv {
     opacity: 0;
     transform: translateY(50px);
     transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
 }

 .rv.vis {
     opacity: 1;
     transform: translateY(0);
 }

 /* RESPONSIVE */
 @media(max-width:960px) {
     .nl {
         display: none;
     }

     .hbg {
         display: flex;
     }

     .sb {
         min-height: auto;
     }

     .sbw {
         min-height: 340px;
     }

     .cw {
         grid-template-columns: 1fr;
         gap: 44px;
     }

     .fg4 {
         grid-template-columns: 1fr 1fr;
         gap: 38px;
     }
 }

 @media(max-width:700px) {
     .sb {
         flex-direction: column !important;
     }

     .sbw {
         flex: none;
         width: 100%;
         min-height: 250px;
     }

     .sbc {
         padding: 44px 6%;
     }

     .fr {
         grid-template-columns: 1fr;
     }

     .fg4 {
         grid-template-columns: 1fr;
     }

     .mod {
         padding: 36px 22px;
     }

     .si {
         padding: 80px 6% 60px;
     }
 }