* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nxp-primary: #ff6b35;
    --nxp-secondary: #f7931e;
    --nxp-dark: #1a1a2e;
    --nxp-darker: #0f0f1e;
    --nxp-purple: #6a2c70;
    --nxp-orange: #ff8c42;
    --nxp-light: #f8f9fa;
    --nxp-gray: #6c757d;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--nxp-darker);
    color: var(--nxp-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.nxp_disclaimer_marine {
    background: linear-gradient(135deg, var(--nxp-primary), var(--nxp-purple));
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nxp_wrapper_parade {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nxp_warn_bluff {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.nxp_text_hill {
    font-size: 13px;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.nxp_navigation_napier {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: sticky;
    top: 48px;
    z-index: 999;
    border-bottom: 2px solid var(--nxp-primary);
}

.nxp_contain_4110 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nxp_brand_nexus {
    display: flex;
    align-items: center;
}

.nxp_logo_spin {
    height: 62px;
    filter: brightness(0) invert(1);
    width: auto;
}

.nxp_links_parade {
    display: flex;
    gap: 32px;
}

.nxp_anchor_marine {
    color: var(--nxp-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nxp_anchor_marine::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nxp-primary);
    transition: width 0.3s ease;
}

.nxp_anchor_marine:hover {
    color: var(--nxp-primary);
}

.nxp_anchor_marine:hover::after {
    width: 100%;
}

.nxp_burger_hill {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nxp_line_4110 {
    width: 28px;
    height: 3px;
    background: var(--nxp-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nxp_burger_hill.active .nxp_line_4110:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nxp_burger_hill.active .nxp_line_4110:nth-child(2) {
    opacity: 0;
}

.nxp_burger_hill.active .nxp_line_4110:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nxp_hero_parade {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--nxp-darker) 0%, var(--nxp-dark) 50%, var(--nxp-purple) 100%);
    overflow: hidden;
}

.nxp_overlay_bluff {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff6b35" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}.nxp_content_marine {
                    position: relative;
    z-index: 2;
   text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.nxp_title_napier {
  font-family: 'Creepster', cursive;
   font-size    :       64px;
      margin-bottom: 20px;
   color: #fff;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.nxp_highlight_hill {
  color: var(--nxp-primary);
	 display: inline-block;
   animation: glow 2s ease-in-out infinite;
}@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px var(--nxp-primary), 0 0 20px var(--nxp-primary); }
    50% { text-shadow: 0 0 20px var(--nxp-primary), 0 0 30px var(--nxp-primary), 0 0 40px var(--nxp-primary); }
}.nxp_subtitle_4110 {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
  font-weight  :  300;
}

.nxp_badges_nexus {

  display:  flex;
   gap: 15px;
          justify-content: center;
   margin-bottom: 35px;
   flex-wrap : wrap;

}

.nxp_badge_spin {
  background: rgba(255,107,53,0.2);
  border: 2px solid var(--nxp-primary);
   padding: 8px 18px;
    border-radius: 25px;
   font-size: 14px;
    font-weight: 600;
  color: var(--nxp-primary);
   text-transform: uppercase;
   letter-spacing   :  1px;
}

.nxp_red_alert {
  background: rgba(220,38,38,0.2);
  border-color: #dc2626;
   color: #dc2626;
  animation  : pulse 2s ease-in-out infinite;
}@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}.nxp_cta_parade {
    display: inline-flex;
   align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--nxp-primary), var(--nxp-secondary));
    color: #fff;
  padding: 16px 40px;
	 border-radius: 50px;
   text-decoration: none;
  font-weight: 600;
	 font-size    :        18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.nxp_cta_parade:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.6);
}

.nxp_arrow_bluff     {
   width: 20px;
    height: 20px;
  filter: brightness(0) invert(1);
}

.nxp_particles_marine {
    position: absolute;

    top    :  0;

   left     :       0;

    right: 0;

    bottom: 0;

  pointer-events: none;

  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
            radial-gradient(2px 2px at 60% 70%, white, transparent),
            radial-gradient(1px 1px at 50% 50%, white, transparent),
            radial-gradient(1px 1px at 80% 10%, white, transparent),
            radial-gradient(2px 2px at 90% 60%, white, transparent);

  background-size: 200% 200%;

   animation: particles 30s linear infinite;

   opacity: 0.3; 

}@keyframes particles {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}.nxp_features_hill {
   padding: 100px 0;
  background: var(--nxp-dark);
	
}

.nxp_heading_napier {
	    text-align: center;

    margin-bottom: 60px;

}

.nxp_section_nexus {
    font-size :  42px;
   margin-bottom: 15px;
    color: #fff;
  font-weight: 700;
}

.nxp_description_spin 
 {
   font-size: 18px;
  color: rgba(255,255,255,0.7);
   max-width: 600px;
   margin: 0 auto;
}

.nxp_grid_parade {
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 35px; 
  max-width: 1200px; 
	 margin: 0 auto; 
  padding: 0 20px;
}

.nxp_card_bluff {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 15px;
  padding: 35px 25px;
    text-align: center;
      transition :        transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nxp_card_bluff:hover {
     transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255,107,53,0.3);
  border-color: var(--nxp-primary);}

.nxp_icon_marine

{
    width: 70px;
				 height    :    70px;
  background: linear-gradient(135deg, var(--nxp-primary), var(--nxp-purple));
    border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
          margin: 0 auto 20px;
}

.nxp_icon_marine img {
    width: 35px;
	height: 35px;
  filter: brightness(0) invert(1);
	
}

.nxp_card_title {
   font-size: 22px; 
	       margin-bottom: 12px; 
	   color: #fff; 
	  font-weight: 600;
}

.nxp_card_text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
   line-height    :     1.7;
}

.nxp_showcase_4110 {
    display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 0;
         min-height: 600px;
}

.nxp_visual_napier {
  background: var(--nxp-darker);
}

.nxp_visual_napier img {
	 width: 100%;
    height: 100%;
	object-fit: cover;
}

.nxp_info_nexus


{
  background: var(--nxp-dark);
   padding: 80px 60px;
	display: flex;
         flex-direction  :  column;
        justify-content: center;
}

.nxp_label_spin {
	font-size  :    14px;
  color: var(--nxp-primary);
   font-weight: 600;
    text-transform: uppercase;
   letter-spacing:2px;
  margin-bottom: 15px;
   display: inline-block;
}

.nxp_info_title {
    font-size: 36px;
  margin-bottom: 25px;
	 color: #fff;
  font-weight: 700;
   line-height : 1.3;
}

.nxp_info_paragraph {
		 font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
    line-height: 1.8;
}

.nxp_categories_marine {
	   padding: 100px 0;
  background: linear-gradient(180deg, var(--nxp-dark) 0%, var(--nxp-darker) 100%);
     }

.nxp_realm_grid {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 25px;
           max-width: 1200px;
      margin: 0 auto;
     padding: 0 20px;
}

.nxp_realm_card {
   height: 320px;
  background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
   overflow: hidden;
   cursor: pointer;
  transition: transform 0.3s ease;
}

.nxp_realm_card:hover {
  transform: scale(1.05);
}

.nxp_realm_overlay {
   position: absolute;
  bottom: 0;
    left: 0;
    right:       0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
         padding: 30px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease; 

}

.nxp_realm_card:hover .nxp_realm_overlay {

	  transform: translateY(0);}

.nxp_realm_overlay h3 {


    font-size: 22px;

	   margin-bottom     :   5px;

	  color: #fff;

	    font-weight: 600;
	}

.nxp_realm_overlay p {
    font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.nxp_testimonial_hill {

	padding: 80px 0;
  background: var(--nxp-dark);

}

.nxp_test_wrapper {
    max-width  : 800px;
   margin:   0 auto;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 15px;
	padding: 50px 40px;
    position     :     relative;
}

.nxp_quote_icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(347deg) brightness(103%) contrast(101%);
}

.nxp_test_text {
   font-size: 20px;
    line-height: 1.8;
  color: rgba(255,255,255,0.9);
    margin-bottom     :     30px;
  font-style :      italic;
}

.nxp_test_author {
         display: flex;
    justify-content: center;
	align-items: center;
  gap: 15px;
     }

.nxp_author_info {
   display: flex;
        flex-direction:        column;
	align-items: center;
	
}

.nxp_author_info strong {
  font-size: 18px;
	margin-bottom    :     3px;
   color: #fff;
}

.nxp_author_info span {

			font-size: 14px;
  color: rgba(255,255,255,0.6);
	}

.nxp_faq_napier {
	  padding: 100px 0;
  background: var(--nxp-darker);

}

.nxp_faq_wrapper {
    max-width     : 900px;
    margin: 0 auto;
	
}

.nxp_faq_item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,107,53,0.2);
    border-radius     : 10px;
   margin-bottom: 15px;
   overflow: hidden;
   transition: border-color 0.3s ease;
}

.nxp_faq_item:hover {
  border-color: var(--nxp-primary);
	
}

.nxp_faq_question
{
  padding: 22px 25px;
         cursor: pointer;
    display: flex;
		 justify-content: space-between;
  align-items: center;
}

.nxp_faq_question h4 {
          font-size: 18px;
   color: #fff;
  margin: 0;
   font-weight: 600;
  flex     :    1;
}

.nxp_faq_icon   {


   width: 20px;
   height:   20px;
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(347deg) brightness(103%) contrast(101%);
  transition: transform 0.3s ease;
     }

.nxp_faq_item.active .nxp_faq_icon {
  transform: rotate(45deg);
}

.nxp_faq_answer {
    max-height: 0;
  overflow: hidden;
    transition  :   max-height 0.3s ease, padding 0.3s ease;
       padding: 0 25px;
}

.nxp_faq_item.active .nxp_faq_answer {
   	 max-height: 500px;
   padding :      0 25px 22px 25px;


}


.nxp_faq_answer p {


  font-size: 15px;
  color: rgba(255,255,255,0.7);
   line-height: 1.7;
	margin: 0;
     }

.nxp_cta_section {
	padding: 100px 0;
  background: linear-gradient(135deg, var(--nxp-purple), var(--nxp-primary));
   position: relative;
    overflow: hidden;
}

.nxp_cta_section::before {
  content: '';

	  position: absolute;

	    top: -50%;

		 right  :     -10%;

	   width: 500px;

	   height: 500px;

	  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);

	  border-radius: 50%;
}

.nxp_cta_content {
    text-align     :     center; 
   position: relative; 
   z-index: 1;
}

.nxp_cta_heading {
	font-size    :     48px;
   margin-bottom: 20px;
         color: #fff;
   font-weight    :     700; 

}

.nxp_cta_subtext   {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
	max-width: 700px;
    margin-left  : auto;
 margin-right: auto;


}

.nxp_cta_button {
   display: inline-flex;

   align-items:  center;

    gap: 12px;

  background: #fff;

  color: var(--nxp-primary);

    padding     :   18px 45px;

	border-radius: 50px;

       text-decoration: none;

   font-weight  : 700;

   font-size   : 18px;

  transition   :        transform 0.3s ease, box-shadow 0.3s ease;

  box-shadow: 0 5px 25px rgba(0,0,0,0.3);}

.nxp_cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0,0,0,0.4);
}



.nxp_cta_button img {
  width:   24px;
    height: 24px;
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(347deg) brightness(103%) contrast(101%);
}

.nxp_footer_bluff {
  background: var(--nxp-darker);
    padding: 60px 0 30px;
  border-top: 2px solid var(--nxp-primary);
}

.nxp_footer_grid {
  display     :grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
   margin-bottom: 40px;
} 

.nxp_footer_logo {
   height: 120px;

  filter: brightness(0) invert(1);

        margin-bottom: 20px;
}

.nxp_footer_desc

{
     font-size: 15px;
  color: rgba(255,255,255,0.7);
   line-height :       1.7;
  margin-bottom: 25px;
     }

.nxp_footer_contact {
   display: flex;
  flex-direction: column;
  gap  :    12px;
}

.nxp_contact_item {
	display:        flex;
        gap: 10px;
   align-items: center;
}

.nxp_contact_item img {
  width: 18px;
          height: 18px;
     filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(347deg) brightness(103%) contrast(101%);
}

.nxp_contact_item span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.nxp_footer_links h4 {
    font-weight: 600;
  color: #fff;
                    font-size :  20px;
    margin-bottom: 20px;
}

.nxp_footer_links ul {
    list-style: none;
}

.nxp_footer_links ul li

{
    margin-bottom: 10px;
}

.nxp_footer_links ul li a {
  color: rgba(255,255,255,0.7); 
	          text-decoration: none; 
	   font-size: 15px; 
		 transition: color 0.3s ease;
}

.nxp_footer_links ul li a:hover	{
  color: var(--nxp-primary);


}

.nxp_footer_info h4 {
  font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.nxp_footer_disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.nxp_footer_bottom {
      text-align: center;
  padding-top  : 30px;
  border-top: 1px solid rgba(255,255,255,0.1);

}

.nxp_footer_bottom p

{
   font-size: 14px;
  color: rgba(255,255,255,0.5);
                    margin: 0;
}@media (max-width: 768px) {
    .nxp_links_parade {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 25px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }

    .nxp_links_parade.active {
        right: 0;
    }

    .nxp_burger_hill {
        display: flex;
    }

    .nxp_title_napier {
        font-size: 36px;
    }

    .nxp_subtitle_4110 {
        font-size: 16px;
    }

    .nxp_badges_nexus {
        flex-direction: column;
        align-items: center;
    }

    .nxp_section_nexus {
        font-size: 32px;
    }

    .nxp_grid_parade {
        grid-template-columns: 1fr;
    }

    .nxp_showcase_4110 {
        grid-template-columns: 1fr;
    }

    .nxp_info_nexus {
        padding: 50px 30px;
    }

    .nxp_info_title {
        font-size: 28px;
    }

    .nxp_realm_grid {
        grid-template-columns: 1fr;
    }

    .nxp_test_wrapper {
        padding: 40px 25px;
    }

    .nxp_test_text {
        font-size: 17px;
    }

    .nxp_cta_heading {
        font-size: 32px;
    }

    .nxp_cta_subtext {
        font-size: 16px;
    }

    .nxp_footer_grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nxp_title_napier {
        font-size: 52px;
    }

    .nxp_grid_parade {
        grid-template-columns: repeat(2, 1fr);
    }

    .nxp_info_nexus {
        padding: 60px 40px;
    }

    .nxp_footer_grid {
        grid-template-columns: 1fr 1fr;
    }
}.nxp_footer_bluff {
  background: var(--nxp-darker);
    padding: 60px 0 30px;
  border-top: 2px solid var(--nxp-primary);
}

.nxp_footer_grid {
   display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
   margin-bottom    :  50px;
}

.nxp_footer_logo {
   height: 50px;
   margin-bottom: 20px;
} 

.nxp_footer_desc {
   font-size: 15px;
  color: rgba(255,255,255,0.7);
       line-height: 1.7;
    margin-bottom     :25px;
}

.nxp_footer_contact	{
   display: flex;
    flex-direction: column;
  gap: 12px;
}

.nxp_contact_item {
    gap: 10px;
  display: flex;
    align-items: center;
}

.nxp_contact_item img  
  {
    width: 18px;
   height: 18px;
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(347deg) brightness(103%) contrast(101%);
}

.nxp_contact_item span{
  font-size: 14px; 
  color: rgba(255,255,255,0.8);
}

.nxp_footer_links h4,
.nxp_footer_legal h4 {


    font-size: 20px;
  margin-bottom: 20px;
    color  :        #fff;
    font-weight: 600;
	}

.nxp_footer_links ul,
.nxp_footer_legal ul

{


   list-style: none;

}

.nxp_footer_links ul li,
.nxp_footer_legal ul li

{
   margin-bottom: 10px;
}

.nxp_footer_links ul li a,
.nxp_footer_legal ul li a   {
  color: rgba(255,255,255,0.7);
    text-decoration: none;
  font-size  :   15px;
  transition: color 0.3s ease;
}

.nxp_footer_links ul li a:hover,
.nxp_footer_legal ul li a:hover {
  color: var(--nxp-primary);
}

.nxp_footer_info h4 {
   	 font-size: 20px;
                    margin-bottom: 20px;
   color     :      #fff;
  font-weight: 600;}

.nxp_footer_disclaimer {

   font-size: 13px;
  color: rgba(255,255,255,0.6);
    line-height: 1.6;
     }

.nxp_regulators_zone {

	  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,107,53,0.2);
    border-radius:    12px;
  padding: 35px 30px;
   margin-bottom: 40px;


}

.nxp_regulator_heading {
  font-size: 22px;
    color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
}



.nxp_regulator_logos	{
    display: flex;
     justify-content    : center;
  align-items: center;
   gap: 35px;
   flex-wrap: wrap;
	
}

.nxp_regulator_link   {
  -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
   display: inline-block;
    transition     :transform 0.3s ease, opacity 0.3s ease;
    opacity  :     0.85;
}

.nxp_regulator_link:hover
{
  transform: translateY(-5px);
    opacity: 1;
}

.nxp_regulator_img {
   height:    55px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nxp_footer_bottom {
  text-align: center;
   padding-top     :30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}



.nxp_footer_bottom p {
   font-size  : 14px;
  color: rgba(255,255,255,0.5);
    margin: 0;
}

.nxp_age_popup_overlay   {
  position: fixed;
    top: 0;
        left: 0;
   right: 0;
    bottom  :0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  z-index   :9999;
    display: flex;
  align-items: center;
    justify-content: center;
	animation: nxpFadeIn 0.4s ease;
}

.nxp_age_popup_overlay.nxp_hidden  
  {
    display :    none;
}@keyframes nxpFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}.nxp_age_popup_modal    {
     background: linear-gradient(135deg, var(--nxp-dark), var(--nxp-darker));
  border: 2px solid var(--nxp-primary);
   border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
   width  :   90%;
   text-align: center;
  box-shadow: 0 10px 50px rgba(255,107,53,0.3);
    animation: nxpSlideUp 0.5s ease;


}@keyframes nxpSlideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}.nxp_age_icon_wrapper {

  margin-bottom: 25px; 
	}

.nxp_age_icon_image {
	 width: 100px;
   height :  100px;
  object-fit: contain;
}

.nxp_age_popup_title {
   font-size: 32px;
   color: #fff;
   margin-bottom: 20px;
  font-weight: 700;
}

.nxp_age_popup_text {
   font-size: 16px;
  color: rgba(255,255,255,0.8);
   line-height: 1.7;
   margin-bottom: 35px;
}

.nxp_age_confirm_btn {
  display: inline-flex;
               align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--nxp-primary), var(--nxp-secondary));
    color: #fff;
  padding: 16px 40px;
    border   :none;
    border-radius: 50px;
   font-size: 18px;
  font-weight: 600;
    cursor   :   pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.nxp_age_confirm_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.6);
}

.nxp_age_btn_icon {
   width: 22px;
    height: 22px;
  filter: brightness(0) invert(1);
}@media (max-width: 768px) {
    .nxp_footer_grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .nxp_regulators_zone {
        padding: 25px 20px;
    }

    .nxp_regulator_logos {
        gap: 20px;
    }

    .nxp_regulator_img {
        height: 45px;
    }

    .nxp_age_popup_modal {
        padding: 40px 30px;
    }

    .nxp_age_popup_title {
        font-size: 26px;
    }

    .nxp_age_icon_image {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nxp_footer_grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}